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

Character.tscn (382B)


      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="SphereShape" id=1]
      6 
      7 [node name="Character" type="KinematicBody"]
      8 
      9 [node name="CollisionShape" type="CollisionShape" parent="."]
     10 shape = SubResource( 1 )
     11 
     12 [node name="MeshInstance" type="MeshInstance" parent="."]
     13 mesh = ExtResource( 1 )
     14 material/0 = null