mirror of
https://github.com/Relintai/godot-steering-ai-framework.git
synced 2024-12-24 05:37:15 +01:00
e95e3bf386
Add quickstart guide and quickstart demo Authored by Razoric and edited by Nathan and Johnny. The purpose of the guide is simply to give an overview of what the behaviors are there for, and a quick look at how to actually make use of them in the basis of this toolkit, with some explanatory comments. The actual user's manual will be built out of the API reference.
25 lines
682 B
Plaintext
25 lines
682 B
Plaintext
[gd_scene load_steps=4 format=2]
|
|
|
|
[ext_resource path="res://assets/sprites/small_circle.png" type="Texture" id=1]
|
|
[ext_resource path="res://demos/Quickstart/Bullet.gd" type="Script" id=2]
|
|
|
|
[sub_resource type="CircleShape2D" id=1]
|
|
radius = 4.0
|
|
|
|
[node name="Bullet" type="KinematicBody2D"]
|
|
collision_layer = 4
|
|
collision_mask = 2
|
|
script = ExtResource( 2 )
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
|
shape = SubResource( 1 )
|
|
|
|
[node name="Sprite" type="Sprite" parent="."]
|
|
modulate = Color( 0.141176, 0.188235, 0.901961, 1 )
|
|
scale = Vector2( 0.25, 0.25 )
|
|
texture = ExtResource( 1 )
|
|
|
|
[node name="Lifetime" type="Timer" parent="."]
|
|
process_mode = 0
|
|
wait_time = 3.0
|