diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-06 04:25:06 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-06 04:25:19 +0200 |
| commit | abc27d4d6b590fbf6adb2fe136208df0ebe2deeb (patch) | |
| tree | e1cb6eccc8958a99b6432faf9d2fd459d30b589c /ClippedCamera.gd | |
| parent | 3cb24b9d4d23b875cc7719c56cd4a664a9ec1b19 (diff) | |
| download | car-abc27d4d6b590fbf6adb2fe136208df0ebe2deeb.tar.gz | |
Better handling, handbrake, follow camera
Diffstat (limited to 'ClippedCamera.gd')
| -rw-r--r-- | ClippedCamera.gd | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ClippedCamera.gd b/ClippedCamera.gd new file mode 100644 index 0000000..ccc8f13 --- /dev/null +++ b/ClippedCamera.gd @@ -0,0 +1,16 @@ +extends ClippedCamera + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + add_exception() + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta): +# pass |
