A Minecraft style clone in Godot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

6 lines
309 B

extends Node
signal create_block(id: String, position: Vector3)
signal drop_block(id: String, start_position: Vector3, direction: Vector3, velocity: float)
signal reset_world ## Used for signaling a deletion of all in the BlocksContainer and DroppedItemsContainer
signal spawn_player(transform: Transform3D)