You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
extends Sprite
|
|
|
|
func _on_Camera_camera_moved(new_location):
|
|
var map_x = new_location.x
|
|
var map_y = new_location.z
|
|
position.x = map_x
|
|
position.y = map_y
|
|
pass # Replace with function body.
|
|
|