From 1c60674a0ea6577cca9ad4d5fcc2c787b94bb09f Mon Sep 17 00:00:00 2001 From: Nathan Lovato Date: Thu, 27 Dec 2018 19:37:05 +0900 Subject: [PATCH] Register the PawnInteractive class in the project.godot file --- godot/project.godot | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/godot/project.godot b/godot/project.godot index 38a375b..ed43c28 100644 --- a/godot/project.godot +++ b/godot/project.godot @@ -99,11 +99,6 @@ _global_script_classes=[ { "language": "GDScript", "path": "res://combat/Hit.gd" }, { -"base": "PawnActor", -"class": "InteractivePawn", -"language": "GDScript", -"path": "res://local_map/pawns/PawnInteractive.gd" -}, { "base": "Reference", "class": "Inventory", "language": "GDScript", @@ -175,6 +170,11 @@ _global_script_classes=[ { "path": "res://local_map/pawns/PawnFollower.gd" }, { "base": "Node2D", +"class": "PawnInteractive", +"language": "GDScript", +"path": "res://local_map/pawns/PawnInteractive.gd" +}, { +"base": "Node2D", "class": "PawnLeader", "language": "GDScript", "path": "res://local_map/pawns/PawnLeader.gd" @@ -228,7 +228,6 @@ _global_script_class_icons={ "GameOverInterface": "", "GrowthStats": "", "Hit": "", -"InteractivePawn": "", "Inventory": "", "Item": "", "LearnedSkill": "", @@ -243,6 +242,7 @@ _global_script_class_icons={ "PawnActor": "", "PawnAnim": "", "PawnFollower": "", +"PawnInteractive": "", "PawnLeader": "", "RectExtents": "", "Skill": "", -- GitLab