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.
martes, 9 de enero de 2024
Otro html
lunes, 8 de enero de 2024
Dispara cudrados toca la pantalla
Click on the red square to see the effect
Circulos volando
domingo, 7 de enero de 2024
Sript para Godot3d 4.2 produce una animacion de giro de todo el contenido del Area3d y borra dos hijos de dicho nodo Area3d;
extends Area3D
# 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 _process(delta):
pass
func _on_area_entered(area):
get_node("SOLDADOTIESO2VIVO").queue_free()
get_node("CollisionShape3D10 borroestoprueba").queue_free()
$AnimationPlayer.play("PELICULA180")
Script para godot3d 4.2, Un Area3d tiene una animacion que se activa, y un nodo hijo de otro tipo que se borra;
extends Area3D
# 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 _process(delta):
pass
func _on_area_entered(area):
get_node("SOLDADOTIESO2VIVO").queue_free()
$AnimationPlayer.play("PELICULA180")