Skip to main content

Posts

Featured

How to Switch Scenes in Godot

 For this example, we start by creating two scenes. We shall name them 'Scene 1' and 'Scene 2'. Just to keep things sorted out, add a label to each scene and have them display the text 'scene 1' and 'scene 2'. Now here is where things get wild. We will add a button to scene 1. Then attach the following signal script to scene 1. func _on_button_pressed() -> void: get_tree().change_scene_to_file("res://scene_2.tscn") Now when you run the game and click the button, we jump to scene 2. And we are done folks.

Latest Posts

Understanding the Input Map in Godot

Setting Up a Background Image in Godot

How to Make Money Online When All Else Fails (Spoiler: Swagbucks to the Rescue!)

Adding a Sprite in Godot

Our First Script in Godot

Hello World

Introduction to Godot

Blender Compositing Tutorial

Inheritance in Java

Utility Classes in Java