summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/runtime/assign_to_read_only_property.gd
blob: 19c4186622309980ae0efd2fb6b666b68917f43e (plain)
1
2
3
4
5
6
7
func test():
	var state = PhysicsDirectBodyState3DExtension.new()
	assign(state)
	state.free()

func assign(state):
	state.center_of_mass.x -= 1.0