mirror of
https://github.com/PfandBoss/SemesterGameJam2022.git
synced 2025-11-12 04:16:12 +01:00
8 lines
223 B
GDScript
8 lines
223 B
GDScript
extends Node3D
|
|
|
|
func _on_area_3d_input_event(camera, event, position, normal, shape_idx):
|
|
if event is InputEventMouseButton:
|
|
if event.button_index == MOUSE_BUTTON_LEFT and event.pressed == true:
|
|
print("Start Game")
|
|
|