Mostrando entradas con la etiqueta Script para godot4.2 solo cuando presiono boton del mouse hace un giro;. Mostrar todas las entradas
Mostrando entradas con la etiqueta Script para godot4.2 solo cuando presiono boton del mouse hace un giro;. Mostrar todas las entradas

lunes, 12 de febrero de 2024

Script para godot4.2 solo cuando presiono boton del mouse hace un giro;

 extends MeshInstance3D


# Called when the node enters the scene tree for the first time.

func _ready():

pass  # Replace with function body.


# Called every frame. 'delta' is the elapsed time since the previous frame.

func _input(event):

if event is InputEventMouseButton:

if event.button_index == 1:

rotate_z(90.149)

# Add an "else" block or remove the "if" if not needed