Godot, scripts para Godot estudios y aprendizajes,
Creacion de videojuegos.
Creacion y publicacion de videojuegos en internet.
Como hacer videojuegos.
C# unity.
Animaciones unity blender.
Personajes videojuegos graficos dibujos.
Diseño grafico.
Comic.
Animaciones gif.
Dibujo de retratos.
Realidad virtual.
Cine y realidad virtual.
Este GDScript solamente rota el texto 180 grados y dice:
MOVER NIÑO -"W"-"A"-"S"-"D" --SALTAR "ESPACIO"- "BOTON DEL RATON IZQUIERDO"-¡¡NIÑO MUERDE!! Y GIRA IZQUIERDA CAMARA ,"BOTON DERECHO"¡¡NIÑO
MUERDE!! Y GIRA DERECHA CAMARA ,
"RUEDA DEL RATON" HACERCA ALEJA CAMARA.
MOVER LA CAMARA -
"U"-IZQUIERDA
"I"DERECHA-
" J"-ADELANTE-
"K"-ATRAS-
INCLINACION DE CAMARA-"O"-"P"
VER INTRUCIONES "ESC" SALIR INSTRUCCIONES "ESC"
Si te fijas veras que estas constantemente abisado para poder ver las instrucciones sin que te moleste el texto en pantalla, y poder jugar con toda la pantalla libre
extends Label
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Variable to track visibility state
var is_visible: bool = true
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
if Input.is_action_just_pressed("escapedesalir"):
is_visible = !is_visible # Toggle visibility
visible = is_visible # Apply the new visibility state
El GDScript de color verde, es el que borra de pantalla y pinta de nuevo en pantalla, es mejor que el de hacer un giro de 180 grados. Bueno es diferente, hace la funcion de otra forma.