Ball implemented, started work on game AI

This commit is contained in:
Segey Lapin
2019-07-30 13:23:34 +03:00
parent 0f1655ac81
commit 20b0ce05de
17 changed files with 400 additions and 21 deletions

View File

@@ -0,0 +1,15 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://items/ball/ball.gd" type="Script" id=1]
[ext_resource path="res://items/ball/ball.escn" type="PackedScene" id=2]
[sub_resource type="SphereShape" id=1]
radius = 0.25
[node name="ball" type="RigidBody"]
script = ExtResource( 1 )
[node name="ball" parent="." instance=ExtResource( 2 )]
[node name="CollisionShape" type="CollisionShape" parent="."]
shape = SubResource( 1 )