basic-move-and-dodge-game

[LEARNING] basic godot game based off the tutorial by borncg on youtube
git clone git://git.figbert.com/basic-move-and-dodge-game.git
Log | Files | Refs | README

playerball.tscn (374B)


      1 [gd_scene load_steps=3 format=2]
      2 
      3 [ext_resource path="res://assets/playerball.tres" type="ArrayMesh" id=1]
      4 
      5 [sub_resource type="BoxShape" id=2]
      6 
      7 [node name="playerball" type="KinematicBody"]
      8 
      9 [node name="Sphere" type="MeshInstance" parent="."]
     10 mesh = ExtResource( 1 )
     11 material/0 = null
     12 
     13 [node name="CollisionShape" type="CollisionShape" parent="."]
     14 shape = SubResource( 2 )