Restructure demo project for better compatibility with AssetLib package

Also, add warning ignores for the custom task.
This commit is contained in:
Serhii Snitsaruk 2024-01-16 21:51:47 +01:00
parent 9bfa0268c1
commit 12dbd9e1a6
19 changed files with 25 additions and 25 deletions

View File

@ -1,7 +0,0 @@
[gd_resource type="Environment" load_steps=2 format=2]
[sub_resource type="Sky" id=1]
[resource]
background_mode = 2
background_sky = SubResource( 1 )

View File

@ -18,12 +18,14 @@ extends BTAction
@export var tolerance := 50.0
@warning_ignore("native_method_override") # needed for GDExtension version.
func _generate_name() -> String:
return "Arrive pos: %s speed: %s" % [
LimboUtility.decorate_var(target_position_var),
LimboUtility.decorate_var(speed_var),
]
@warning_ignore("native_method_override")
func _tick(p_delta: float) -> Status:
var target_pos: Vector2 = blackboard.get_var(target_position_var, Vector2.ZERO)
if target_pos.distance_to(agent.global_position) < tolerance:

View File

@ -1,6 +1,6 @@
[gd_resource type="BehaviorTree" load_steps=10 format=3 uid="uid://cjkqi41oagagd"]
[ext_resource type="Script" path="res://ai/tasks/arrive_pos.gd" id="1_rhs33"]
[ext_resource type="Script" path="res://demo/ai/tasks/arrive_pos.gd" id="1_rhs33"]
[sub_resource type="BTAction" id="BTAction_3xal7"]
script = ExtResource("1_rhs33")

View File

@ -1,8 +1,8 @@
[gd_scene load_steps=2 format=3 uid="uid://d4bjeyescflm8"]
[ext_resource type="BehaviorTree" uid="uid://cvm3gqes75f53" path="res://ai/trees/variables.tres" id="1_tq7fc"]
[ext_resource type="BehaviorTree" uid="uid://cvm3gqes75f53" path="res://demo/ai/trees/variables.tres" id="1_cm2sf"]
[node name="Variables Example" type="Node2D"]
[node name="BTPlayer" type="BTPlayer" parent="."]
behavior_tree = ExtResource("1_tq7fc")
behavior_tree = ExtResource("1_cm2sf")

View File

@ -1,8 +1,8 @@
[gd_scene load_steps=4 format=3 uid="uid://p5i7fdku3hqs"]
[ext_resource type="Script" path="res://examples/waypoints/example_waypoints.gd" id="1_d4sso"]
[ext_resource type="Script" path="res://examples/waypoints/waypoint_marker.gd" id="2_l26sl"]
[ext_resource type="PackedScene" uid="uid://c26b8c8dndtop" path="res://examples/waypoints/patrolling_agent.tscn" id="3_t4qgi"]
[ext_resource type="Script" path="res://demo/examples/waypoints/example_waypoints.gd" id="1_d4sso"]
[ext_resource type="Script" path="res://demo/examples/waypoints/waypoint_marker.gd" id="2_l26sl"]
[ext_resource type="PackedScene" uid="uid://c26b8c8dndtop" path="res://demo/examples/waypoints/patrolling_agent.tscn" id="3_t4qgi"]
[node name="ExampleWaypoints" type="Node2D"]
script = ExtResource("1_d4sso")

View File

@ -1,8 +1,8 @@
[gd_scene load_steps=7 format=3 uid="uid://c26b8c8dndtop"]
[ext_resource type="Script" path="res://examples/waypoints/patrolling_agent.gd" id="1_5wwhb"]
[ext_resource type="BehaviorTree" uid="uid://cjkqi41oagagd" path="res://ai/trees/waypoints.tres" id="2_66y4v"]
[ext_resource type="Texture2D" uid="uid://d0mht3ntak7e5" path="res://icon.png" id="3_j5bxx"]
[ext_resource type="Script" path="res://demo/examples/waypoints/patrolling_agent.gd" id="1_5wwhb"]
[ext_resource type="BehaviorTree" uid="uid://cjkqi41oagagd" path="res://demo/ai/trees/waypoints.tres" id="2_66y4v"]
[ext_resource type="Texture2D" uid="uid://d0mht3ntak7e5" path="res://demo/godot.png" id="3_64ge2"]
[sub_resource type="Animation" id="Animation_5id00"]
length = 0.001
@ -51,7 +51,7 @@ _blackboard_data = {
}
[node name="Sprite2D" type="Sprite2D" parent="."]
texture = ExtResource("3_j5bxx")
texture = ExtResource("3_64ge2")
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
libraries = {

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -3,15 +3,15 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://d0mht3ntak7e5"
path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"
path="res://.godot/imported/godot.png-a8a26b1338954efbba9baa82b9ad4a96.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://icon.png"
dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"]
source_file="res://demo/godot.png"
dest_files=["res://.godot/imported/godot.png-a8a26b1338954efbba9baa82b9ad4a96.ctex"]
[params]

View File

@ -1,7 +1,7 @@
[gd_scene load_steps=3 format=3 uid="uid://c3d3ed6545cly"]
[ext_resource type="Script" path="res://tests/agent_properties/agent_properties.gd" id="1_jh88u"]
[ext_resource type="BehaviorTree" uid="uid://ddhxf0haxgw" path="res://tests/agent_properties/bt_agent_properties.tres" id="2_txe8k"]
[ext_resource type="Script" path="res://demo/tests/agent_properties/agent_properties.gd" id="1_jh88u"]
[ext_resource type="BehaviorTree" uid="uid://ddhxf0haxgw" path="res://demo/tests/agent_properties/bt_agent_properties.tres" id="2_txe8k"]
[node name="AgentProperties" type="Node2D"]
script = ExtResource("1_jh88u")

View File

@ -1,6 +1,6 @@
[gd_scene load_steps=2 format=3 uid="uid://dgeb7tg8xb3j4"]
[ext_resource type="BehaviorTree" uid="uid://cen725hsk8lyl" path="res://tests/probability_selector/bt_test_probability_selector.tres" id="1_lr7l2"]
[ext_resource type="BehaviorTree" uid="uid://cen725hsk8lyl" path="res://demo/tests/probability_selector/bt_test_probability_selector.tres" id="1_lr7l2"]
[node name="test_probability_selector" type="Node2D"]

View File

@ -12,9 +12,9 @@ config_version=5
config/name="LimboAI Test"
config/tags=PackedStringArray("demo")
run/main_scene="res://examples/waypoints/example_waypoints.tscn"
run/main_scene="res://demo/examples/waypoints/example_waypoints.tscn"
config/features=PackedStringArray("4.2")
config/icon="res://icon.png"
config/icon="res://demo/godot.png"
[debug]
@ -24,6 +24,11 @@ gdscript/warnings/native_method_override=1
common/drop_mouse_on_gui_input_disabled=true
[limbo_ai]
behavior_tree/behavior_tree_default_dir="res://demo/ai/trees"
behavior_tree/user_task_dir_1="res://demo/ai/tasks"
[physics]
common/enable_pause_aware_picking=true