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 / 4.0
|
|
position.y = map_y / 4.0
|
|
|
|
func _ready():
|
|
scale.x = 1
|
|
scale.y = 1
|
|
|