summaryrefslogtreecommitdiffhomepage
path: root/Racing-Game/4WheelCar/RemoteTransform2D.gd
blob: b18f70608f89ce79eb72d69454272066f7f87a4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extends RemoteTransform2D

# Declare member variables here. Examples:
# var a = 2
# var b = "text"
var camera

# Called when the node enters the scene tree for the first time.
func _ready():
	var camera = get_node("/root/World/Camera2D")

# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
	#camera.global_position = global_position
	#camera.global_rotation = global_rotation;
	pass