├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── release-drafter.yml └── workflows │ ├── activation.yml │ ├── main.yml │ ├── pull-request-labeler.yml │ ├── release-drafter.yml │ └── update-package.yml ├── .gitignore ├── Demo ├── .editorconfig ├── .gitignore ├── .vsconfig ├── Assembly-CSharp-Editor.csproj.DotSettings ├── Assembly-CSharp.csproj.DotSettings ├── Assets │ ├── CrashKonijn.meta │ ├── CrashKonijn │ │ ├── GOAP.meta │ │ └── GOAP │ │ │ ├── Demos.meta │ │ │ ├── Demos │ │ │ ├── Animations.meta │ │ │ ├── Animations │ │ │ │ ├── 00-creature-sheet-front_0.controller │ │ │ │ ├── 00-creature-sheet-front_0.controller.meta │ │ │ │ ├── 00-creature-sheet-front_1.controller │ │ │ │ ├── 00-creature-sheet-front_1.controller.meta │ │ │ │ ├── BlueIdle.anim │ │ │ │ ├── BlueIdle.anim.meta │ │ │ │ ├── BlueWalkForward.anim │ │ │ │ ├── BlueWalkForward.anim.meta │ │ │ │ ├── CharacterAnimationController.controller │ │ │ │ └── CharacterAnimationController.controller.meta │ │ │ ├── Complex.meta │ │ │ ├── Complex │ │ │ │ ├── Actions.meta │ │ │ │ ├── Actions │ │ │ │ │ ├── CreateItemAction.cs │ │ │ │ │ ├── CreateItemAction.cs.meta │ │ │ │ │ ├── EatAction.cs │ │ │ │ │ ├── EatAction.cs.meta │ │ │ │ │ ├── GatherItemAction.cs │ │ │ │ │ ├── GatherItemAction.cs.meta │ │ │ │ │ ├── HaulItemAction.cs │ │ │ │ │ ├── HaulItemAction.cs.meta │ │ │ │ │ ├── PickupItemAction.cs │ │ │ │ │ ├── PickupItemAction.cs.meta │ │ │ │ │ ├── WanderAction.cs │ │ │ │ │ └── WanderAction.cs.meta │ │ │ │ ├── Behaviours.meta │ │ │ │ ├── Behaviours │ │ │ │ │ ├── AgentMoveBehaviour.cs │ │ │ │ │ ├── AgentMoveBehaviour.cs.meta │ │ │ │ │ ├── AgentSpawnBehaviour.cs │ │ │ │ │ ├── AgentSpawnBehaviour.cs.meta │ │ │ │ │ ├── AnimationBehaviour.cs │ │ │ │ │ ├── AnimationBehaviour.cs.meta │ │ │ │ │ ├── ComplexAgentBrain.cs │ │ │ │ │ ├── ComplexAgentBrain.cs.meta │ │ │ │ │ ├── ComplexHungerBehaviour.cs │ │ │ │ │ ├── ComplexHungerBehaviour.cs.meta │ │ │ │ │ ├── ComplexInventoryBehaviour.cs │ │ │ │ │ ├── ComplexInventoryBehaviour.cs.meta │ │ │ │ │ ├── ComplexTextBehaviour.cs │ │ │ │ │ ├── ComplexTextBehaviour.cs.meta │ │ │ │ │ ├── ComplexTreeBehaviour.cs │ │ │ │ │ ├── ComplexTreeBehaviour.cs.meta │ │ │ │ │ ├── InstanceHandler.cs │ │ │ │ │ ├── InstanceHandler.cs.meta │ │ │ │ │ ├── ItemBase.cs │ │ │ │ │ ├── ItemBase.cs.meta │ │ │ │ │ ├── ItemCollection.cs │ │ │ │ │ ├── ItemCollection.cs.meta │ │ │ │ │ ├── ItemFactory.cs │ │ │ │ │ ├── ItemFactory.cs.meta │ │ │ │ │ ├── ItemSourceBase.cs │ │ │ │ │ └── ItemSourceBase.cs.meta │ │ │ │ ├── Classes.meta │ │ │ │ ├── Classes │ │ │ │ │ ├── Items.meta │ │ │ │ │ ├── Items │ │ │ │ │ │ ├── Apple.cs │ │ │ │ │ │ ├── Apple.cs.meta │ │ │ │ │ │ ├── Axe.cs │ │ │ │ │ │ ├── Axe.cs.meta │ │ │ │ │ │ ├── Iron.cs │ │ │ │ │ │ ├── Iron.cs.meta │ │ │ │ │ │ ├── Pickaxe.cs │ │ │ │ │ │ ├── Pickaxe.cs.meta │ │ │ │ │ │ ├── Wood.cs │ │ │ │ │ │ └── Wood.cs.meta │ │ │ │ │ ├── SetIds.cs │ │ │ │ │ ├── SetIds.cs.meta │ │ │ │ │ ├── Sources.meta │ │ │ │ │ ├── Sources │ │ │ │ │ │ ├── AnvilSource.cs │ │ │ │ │ │ ├── AnvilSource.cs.meta │ │ │ │ │ │ ├── AppleSource.cs │ │ │ │ │ │ ├── AppleSource.cs.meta │ │ │ │ │ │ ├── BoxSource.cs │ │ │ │ │ │ ├── BoxSource.cs.meta │ │ │ │ │ │ ├── IronMineSource.cs │ │ │ │ │ │ ├── IronMineSource.cs.meta │ │ │ │ │ │ ├── WoodSource.cs │ │ │ │ │ │ └── WoodSource.cs.meta │ │ │ │ │ ├── Targets.cs │ │ │ │ │ └── Targets.cs.meta │ │ │ │ ├── Compatibility.cs │ │ │ │ ├── Compatibility.cs.meta │ │ │ │ ├── Extensions.cs │ │ │ │ ├── Extensions.cs.meta │ │ │ │ ├── Factories.meta │ │ │ │ ├── Factories │ │ │ │ │ ├── Capabilities.meta │ │ │ │ │ ├── Capabilities │ │ │ │ │ │ ├── BaseCapability.cs │ │ │ │ │ │ ├── BaseCapability.cs.meta │ │ │ │ │ │ ├── HungerCapability.cs │ │ │ │ │ │ ├── HungerCapability.cs.meta │ │ │ │ │ │ ├── WanderCapability.cs │ │ │ │ │ │ └── WanderCapability.cs.meta │ │ │ │ │ ├── CleanerAgentTypeConfigFactory.cs │ │ │ │ │ ├── CleanerAgentTypeConfigFactory.cs.meta │ │ │ │ │ ├── Extensions.meta │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── ActionExtensions.cs │ │ │ │ │ │ ├── ActionExtensions.cs.meta │ │ │ │ │ │ ├── GoalExtensions.cs │ │ │ │ │ │ ├── GoalExtensions.cs.meta │ │ │ │ │ │ ├── TargetSensorExtensions.cs │ │ │ │ │ │ ├── TargetSensorExtensions.cs.meta │ │ │ │ │ │ ├── WorldSensorExtensions.cs │ │ │ │ │ │ └── WorldSensorExtensions.cs.meta │ │ │ │ │ ├── MinerAgentTypeConfigFactory.cs │ │ │ │ │ ├── MinerAgentTypeConfigFactory.cs.meta │ │ │ │ │ ├── SmithAgentTypeConfigFactory.cs │ │ │ │ │ ├── SmithAgentTypeConfigFactory.cs.meta │ │ │ │ │ ├── WoodCutterAgentTypeConfigFactory.cs │ │ │ │ │ └── WoodCutterAgentTypeConfigFactory.cs.meta │ │ │ │ ├── GOAP.asset │ │ │ │ ├── GOAP.asset.meta │ │ │ │ ├── Goals.meta │ │ │ │ ├── Goals │ │ │ │ │ ├── CleanItemsGoal.cs │ │ │ │ │ ├── CleanItemsGoal.cs.meta │ │ │ │ │ ├── CreateItemGoal.cs │ │ │ │ │ ├── CreateItemGoal.cs.meta │ │ │ │ │ ├── FixHungerGoal.cs │ │ │ │ │ ├── FixHungerGoal.cs.meta │ │ │ │ │ ├── GatherItemGoal.cs │ │ │ │ │ ├── GatherItemGoal.cs.meta │ │ │ │ │ ├── PickupItemGoal.cs │ │ │ │ │ ├── PickupItemGoal.cs.meta │ │ │ │ │ ├── WanderGoal.cs │ │ │ │ │ └── WanderGoal.cs.meta │ │ │ │ ├── Goap.meta │ │ │ │ ├── Goap │ │ │ │ │ ├── GoapConfigInitializer.cs │ │ │ │ │ ├── GoapConfigInitializer.cs.meta │ │ │ │ │ ├── GoapInjector.cs │ │ │ │ │ ├── GoapInjector.cs.meta │ │ │ │ │ ├── ItemTarget.cs │ │ │ │ │ └── ItemTarget.cs.meta │ │ │ │ ├── Interfaces.meta │ │ │ │ ├── Interfaces │ │ │ │ │ ├── ICreatable.cs │ │ │ │ │ ├── ICreatable.cs.meta │ │ │ │ │ ├── IEatable.cs │ │ │ │ │ ├── IEatable.cs.meta │ │ │ │ │ ├── IGatherable.cs │ │ │ │ │ ├── IGatherable.cs.meta │ │ │ │ │ ├── IHoldable.cs │ │ │ │ │ ├── IHoldable.cs.meta │ │ │ │ │ ├── IInjectable.cs │ │ │ │ │ ├── IInjectable.cs.meta │ │ │ │ │ ├── ISource.cs │ │ │ │ │ └── ISource.cs.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Anvil.prefab │ │ │ │ │ ├── Anvil.prefab.meta │ │ │ │ │ ├── Box.prefab │ │ │ │ │ ├── Box.prefab.meta │ │ │ │ │ ├── ComplexAgent.prefab │ │ │ │ │ ├── ComplexAgent.prefab.meta │ │ │ │ │ ├── IronMine.prefab │ │ │ │ │ ├── IronMine.prefab.meta │ │ │ │ │ ├── Items.meta │ │ │ │ │ ├── Items │ │ │ │ │ │ ├── Apple.prefab │ │ │ │ │ │ ├── Apple.prefab.meta │ │ │ │ │ │ ├── Axe.prefab │ │ │ │ │ │ ├── Axe.prefab.meta │ │ │ │ │ │ ├── Iron.prefab │ │ │ │ │ │ ├── Iron.prefab.meta │ │ │ │ │ │ ├── Pickaxe.prefab │ │ │ │ │ │ ├── Pickaxe.prefab.meta │ │ │ │ │ │ ├── Wood.prefab │ │ │ │ │ │ └── Wood.prefab.meta │ │ │ │ │ ├── Tree.prefab │ │ │ │ │ └── Tree.prefab.meta │ │ │ │ ├── Scenes.meta │ │ │ │ ├── Scenes │ │ │ │ │ ├── ComplexDemoScene.unity │ │ │ │ │ └── ComplexDemoScene.unity.meta │ │ │ │ ├── Sensors.meta │ │ │ │ ├── Sensors │ │ │ │ │ ├── Multi.meta │ │ │ │ │ ├── Multi │ │ │ │ │ │ ├── ItemSensors.cs │ │ │ │ │ │ └── ItemSensors.cs.meta │ │ │ │ │ ├── Target.meta │ │ │ │ │ ├── Target │ │ │ │ │ │ ├── ClosestItemSensor.cs │ │ │ │ │ │ ├── ClosestItemSensor.cs.meta │ │ │ │ │ │ ├── ClosestObjectSensor.cs │ │ │ │ │ │ ├── ClosestObjectSensor.cs.meta │ │ │ │ │ │ ├── ClosestSourceSensor.cs │ │ │ │ │ │ ├── ClosestSourceSensor.cs.meta │ │ │ │ │ │ ├── HaulTargetSensor.cs │ │ │ │ │ │ ├── HaulTargetSensor.cs.meta │ │ │ │ │ │ ├── TransformSensor.cs │ │ │ │ │ │ ├── TransformSensor.cs.meta │ │ │ │ │ │ ├── WanderTargetSensor.cs │ │ │ │ │ │ └── WanderTargetSensor.cs.meta │ │ │ │ │ ├── World.meta │ │ │ │ │ └── World │ │ │ │ │ │ ├── HungerSensor.cs │ │ │ │ │ │ ├── HungerSensor.cs.meta │ │ │ │ │ │ ├── IsHoldingSensor.cs │ │ │ │ │ │ ├── IsHoldingSensor.cs.meta │ │ │ │ │ │ ├── IsInWorldSensor.cs │ │ │ │ │ │ ├── IsInWorldSensor.cs.meta │ │ │ │ │ │ ├── ItemOnFloorSensor.cs │ │ │ │ │ │ └── ItemOnFloorSensor.cs.meta │ │ │ │ ├── Targets.meta │ │ │ │ ├── Targets │ │ │ │ │ ├── ClosestSourceTarget.cs │ │ │ │ │ ├── ClosestSourceTarget.cs.meta │ │ │ │ │ ├── ClosestTarget.cs │ │ │ │ │ ├── ClosestTarget.cs.meta │ │ │ │ │ ├── HaulTarget.cs │ │ │ │ │ ├── HaulTarget.cs.meta │ │ │ │ │ ├── TransformTarget.cs │ │ │ │ │ ├── TransformTarget.cs.meta │ │ │ │ │ ├── WanderTarget.cs │ │ │ │ │ └── WanderTarget.cs.meta │ │ │ │ ├── WorldKeys.meta │ │ │ │ ├── WorldKeys │ │ │ │ │ ├── CreatedItem.cs │ │ │ │ │ ├── CreatedItem.cs.meta │ │ │ │ │ ├── Hunger.cs │ │ │ │ │ ├── Hunger.cs.meta │ │ │ │ │ ├── IsHolding.cs │ │ │ │ │ ├── IsHolding.cs.meta │ │ │ │ │ ├── IsInWorld.cs │ │ │ │ │ ├── IsInWorld.cs.meta │ │ │ │ │ ├── IsWandering.cs │ │ │ │ │ ├── IsWandering.cs.meta │ │ │ │ │ ├── ItemsOnFloor.cs │ │ │ │ │ └── ItemsOnFloor.cs.meta │ │ │ │ ├── com.crashkonijn.goap.demos.complex.asmdef │ │ │ │ └── com.crashkonijn.goap.demos.complex.asmdef.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── ItemBaseEditor.cs │ │ │ │ ├── ItemBaseEditor.cs.meta │ │ │ │ ├── ItemCollectionEditor.cs │ │ │ │ └── ItemCollectionEditor.cs.meta │ │ │ ├── Shared.meta │ │ │ ├── Shared │ │ │ │ ├── Actions.meta │ │ │ │ ├── Actions │ │ │ │ │ ├── WanderAction.cs │ │ │ │ │ └── WanderAction.cs.meta │ │ │ │ ├── Behaviours.meta │ │ │ │ ├── Behaviours │ │ │ │ │ ├── AgentMoveBehaviour.cs │ │ │ │ │ ├── AgentMoveBehaviour.cs.meta │ │ │ │ │ ├── AnimationBehaviour.cs │ │ │ │ │ ├── AnimationBehaviour.cs.meta │ │ │ │ │ ├── HungerBehaviour.cs │ │ │ │ │ └── HungerBehaviour.cs.meta │ │ │ │ ├── Goals.meta │ │ │ │ ├── Goals │ │ │ │ │ ├── FixHungerGoal.cs │ │ │ │ │ ├── FixHungerGoal.cs.meta │ │ │ │ │ ├── WanderGoal.cs │ │ │ │ │ └── WanderGoal.cs.meta │ │ │ │ ├── Sensors.meta │ │ │ │ └── Sensors │ │ │ │ │ ├── Target.meta │ │ │ │ │ └── Target │ │ │ │ │ ├── TransformSensor.cs │ │ │ │ │ ├── TransformSensor.cs.meta │ │ │ │ │ ├── WanderTargetSensor.cs │ │ │ │ │ └── WanderTargetSensor.cs.meta │ │ │ ├── Simple.meta │ │ │ ├── Simple │ │ │ │ ├── Behaviours.meta │ │ │ │ ├── Behaviours │ │ │ │ │ ├── AgentMoveBehaviour.cs │ │ │ │ │ ├── AgentMoveBehaviour.cs.meta │ │ │ │ │ ├── AnimationBehaviour.cs │ │ │ │ │ ├── AnimationBehaviour.cs.meta │ │ │ │ │ ├── AppleBehaviour.cs │ │ │ │ │ ├── AppleBehaviour.cs.meta │ │ │ │ │ ├── AppleCollection.cs │ │ │ │ │ ├── AppleCollection.cs.meta │ │ │ │ │ ├── InventoryBehaviour.cs │ │ │ │ │ ├── InventoryBehaviour.cs.meta │ │ │ │ │ ├── SettingsBehaviour.cs │ │ │ │ │ ├── SettingsBehaviour.cs.meta │ │ │ │ │ ├── SimpleAgentBrain.cs │ │ │ │ │ ├── SimpleAgentBrain.cs.meta │ │ │ │ │ ├── SimpleHungerBehaviour.cs │ │ │ │ │ ├── SimpleHungerBehaviour.cs.meta │ │ │ │ │ ├── SimpleTextBehaviour.cs │ │ │ │ │ ├── SimpleTextBehaviour.cs.meta │ │ │ │ │ ├── TreeBehaviour.cs │ │ │ │ │ └── TreeBehaviour.cs.meta │ │ │ │ ├── Compatibility.cs │ │ │ │ ├── Compatibility.cs.meta │ │ │ │ ├── Configs.meta │ │ │ │ ├── Configs │ │ │ │ │ ├── Actions.meta │ │ │ │ │ ├── Actions │ │ │ │ │ │ ├── EatAppleAction.asset │ │ │ │ │ │ ├── EatAppleAction.asset.meta │ │ │ │ │ │ ├── PickupAppleAction.asset │ │ │ │ │ │ ├── PickupAppleAction.asset.meta │ │ │ │ │ │ ├── PluckAppleAction.asset │ │ │ │ │ │ ├── PluckAppleAction.asset.meta │ │ │ │ │ │ ├── WanderAction.asset │ │ │ │ │ │ └── WanderAction.asset.meta │ │ │ │ │ ├── Goals.meta │ │ │ │ │ ├── Goals │ │ │ │ │ │ ├── FixHungerGoalConfig.asset │ │ │ │ │ │ ├── FixHungerGoalConfig.asset.meta │ │ │ │ │ │ ├── WanderGoalConfig.asset │ │ │ │ │ │ └── WanderGoalConfig.asset.meta │ │ │ │ │ ├── Sets.meta │ │ │ │ │ ├── Sets │ │ │ │ │ │ ├── DefaultSet.asset │ │ │ │ │ │ └── DefaultSet.asset.meta │ │ │ │ │ ├── TargetKey.meta │ │ │ │ │ ├── TargetKey │ │ │ │ │ │ ├── ClosestApple.asset │ │ │ │ │ │ ├── ClosestApple.asset.meta │ │ │ │ │ │ ├── ClosestTree.asset │ │ │ │ │ │ ├── ClosestTree.asset.meta │ │ │ │ │ │ ├── TransformTarget.asset │ │ │ │ │ │ ├── TransformTarget.asset.meta │ │ │ │ │ │ ├── WanderTarget.asset │ │ │ │ │ │ └── WanderTarget.asset.meta │ │ │ │ │ ├── TargetSensors.meta │ │ │ │ │ ├── TargetSensors │ │ │ │ │ │ ├── ClosestAppleSensor.asset │ │ │ │ │ │ ├── ClosestAppleSensor.asset.meta │ │ │ │ │ │ ├── ClosestTreeSensor.asset │ │ │ │ │ │ ├── ClosestTreeSensor.asset.meta │ │ │ │ │ │ ├── TransformTargetSensor.asset │ │ │ │ │ │ ├── TransformTargetSensor.asset.meta │ │ │ │ │ │ ├── WanderTargetSensor.asset │ │ │ │ │ │ └── WanderTargetSensor.asset.meta │ │ │ │ │ ├── WorldKeys.meta │ │ │ │ │ ├── WorldKeys │ │ │ │ │ │ ├── HasApple.asset │ │ │ │ │ │ ├── HasApple.asset.meta │ │ │ │ │ │ ├── IsHungry.asset │ │ │ │ │ │ ├── IsHungry.asset.meta │ │ │ │ │ │ ├── IsWandering.asset │ │ │ │ │ │ ├── IsWandering.asset.meta │ │ │ │ │ │ ├── ThereAreApples.asset │ │ │ │ │ │ └── ThereAreApples.asset.meta │ │ │ │ │ ├── WorldSensors.meta │ │ │ │ │ └── WorldSensors │ │ │ │ │ │ ├── HasAppleSensor.asset │ │ │ │ │ │ ├── HasAppleSensor.asset.meta │ │ │ │ │ │ ├── IsHungrySensor.asset │ │ │ │ │ │ ├── IsHungrySensor.asset.meta │ │ │ │ │ │ ├── ThereAreApplesSensor.asset │ │ │ │ │ │ └── ThereAreApplesSensor.asset.meta │ │ │ │ ├── Extensions.cs │ │ │ │ ├── Extensions.cs.meta │ │ │ │ ├── Goap.meta │ │ │ │ ├── Goap │ │ │ │ │ ├── Actions.meta │ │ │ │ │ ├── Actions │ │ │ │ │ │ ├── EatAppleAction.cs │ │ │ │ │ │ ├── EatAppleAction.cs.meta │ │ │ │ │ │ ├── PickupAppleAction.cs │ │ │ │ │ │ ├── PickupAppleAction.cs.meta │ │ │ │ │ │ ├── PluckAppleAction.cs │ │ │ │ │ │ ├── PluckAppleAction.cs.meta │ │ │ │ │ │ ├── WanderAction.cs │ │ │ │ │ │ └── WanderAction.cs.meta │ │ │ │ │ ├── AgentTypes.meta │ │ │ │ │ ├── AgentTypes │ │ │ │ │ │ ├── SimpleAgent.asset │ │ │ │ │ │ └── SimpleAgent.asset.meta │ │ │ │ │ ├── Capabilities.meta │ │ │ │ │ ├── Capabilities │ │ │ │ │ │ ├── BaseCapabilityFactory.asset │ │ │ │ │ │ ├── BaseCapabilityFactory.asset.meta │ │ │ │ │ │ ├── HealthCapability.asset │ │ │ │ │ │ ├── HealthCapability.asset.meta │ │ │ │ │ │ ├── TestCapability.asset │ │ │ │ │ │ ├── TestCapability.asset.meta │ │ │ │ │ │ ├── WanderCapability.asset │ │ │ │ │ │ └── WanderCapability.asset.meta │ │ │ │ │ ├── Factories.meta │ │ │ │ │ ├── Factories │ │ │ │ │ │ ├── BaseCapabilityFactory.cs │ │ │ │ │ │ └── BaseCapabilityFactory.cs.meta │ │ │ │ │ ├── GOAP.asset │ │ │ │ │ ├── GOAP.asset.meta │ │ │ │ │ ├── Goals.meta │ │ │ │ │ ├── Goals │ │ │ │ │ │ ├── FixHungerGoal.cs │ │ │ │ │ │ ├── FixHungerGoal.cs.meta │ │ │ │ │ │ ├── WanderGoal.cs │ │ │ │ │ │ └── WanderGoal.cs.meta │ │ │ │ │ ├── Sensors.meta │ │ │ │ │ ├── Sensors │ │ │ │ │ │ ├── Multi.meta │ │ │ │ │ │ ├── Multi │ │ │ │ │ │ │ ├── AppleSensor.cs │ │ │ │ │ │ │ └── AppleSensor.cs.meta │ │ │ │ │ │ ├── Target.meta │ │ │ │ │ │ ├── Target │ │ │ │ │ │ │ ├── AgentSensor.cs │ │ │ │ │ │ │ ├── AgentSensor.cs.meta │ │ │ │ │ │ │ ├── ClosestTreeSensor.cs │ │ │ │ │ │ │ ├── ClosestTreeSensor.cs.meta │ │ │ │ │ │ │ ├── WanderTargetSensor.cs │ │ │ │ │ │ │ └── WanderTargetSensor.cs.meta │ │ │ │ │ │ ├── World.meta │ │ │ │ │ │ └── World │ │ │ │ │ │ │ ├── IsAliveSensor.cs │ │ │ │ │ │ │ ├── IsAliveSensor.cs.meta │ │ │ │ │ │ │ ├── IsHungrySensor.cs │ │ │ │ │ │ │ ├── IsHungrySensor.cs.meta │ │ │ │ │ │ │ ├── ThereAreApplesSensor.cs │ │ │ │ │ │ │ └── ThereAreApplesSensor.cs.meta │ │ │ │ │ ├── TargetKeys.meta │ │ │ │ │ ├── TargetKeys │ │ │ │ │ │ ├── AgentTarget.cs │ │ │ │ │ │ ├── AgentTarget.cs.meta │ │ │ │ │ │ ├── ClosestApple.cs │ │ │ │ │ │ ├── ClosestApple.cs.meta │ │ │ │ │ │ ├── ClosestTree.cs │ │ │ │ │ │ ├── ClosestTree.cs.meta │ │ │ │ │ │ ├── WanderTarget.cs │ │ │ │ │ │ └── WanderTarget.cs.meta │ │ │ │ │ ├── WorldKeys.meta │ │ │ │ │ └── WorldKeys │ │ │ │ │ │ ├── HasApple.cs │ │ │ │ │ │ ├── HasApple.cs.meta │ │ │ │ │ │ ├── IsHungry.cs │ │ │ │ │ │ ├── IsHungry.cs.meta │ │ │ │ │ │ ├── IsWandering.cs │ │ │ │ │ │ ├── IsWandering.cs.meta │ │ │ │ │ │ ├── ThereAreApples.cs │ │ │ │ │ │ └── ThereAreApples.cs.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── AppleMaterial.mat │ │ │ │ │ ├── AppleMaterial.mat.meta │ │ │ │ │ ├── FloorMaterial.mat │ │ │ │ │ ├── FloorMaterial.mat.meta │ │ │ │ │ ├── TreeMaterial.mat │ │ │ │ │ └── TreeMaterial.mat.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Agent.prefab │ │ │ │ │ ├── Agent.prefab.meta │ │ │ │ │ ├── Apple.prefab │ │ │ │ │ ├── Apple.prefab.meta │ │ │ │ │ ├── Tree.prefab │ │ │ │ │ └── Tree.prefab.meta │ │ │ │ ├── Scenes.meta │ │ │ │ ├── Scenes │ │ │ │ │ ├── SimpleDemoScene.unity │ │ │ │ │ └── SimpleDemoScene.unity.meta │ │ │ │ ├── com.crashkonijn.goap.demos.simple.asmdef │ │ │ │ └── com.crashkonijn.goap.demos.simple.asmdef.meta │ │ │ ├── Sprites.meta │ │ │ ├── Sprites │ │ │ │ ├── 00-creature-sheet-back.png │ │ │ │ ├── 00-creature-sheet-back.png.meta │ │ │ │ ├── 00-creature-sheet-front.png │ │ │ │ ├── 00-creature-sheet-front.png.meta │ │ │ │ ├── 01-creature-sheet-back.png │ │ │ │ ├── 01-creature-sheet-back.png.meta │ │ │ │ ├── 01-creature-sheet-front.png │ │ │ │ ├── 01-creature-sheet-front.png.meta │ │ │ │ ├── 02-creature-sheet-back.png │ │ │ │ ├── 02-creature-sheet-back.png.meta │ │ │ │ ├── 02-creature-sheet-front.png │ │ │ │ ├── 02-creature-sheet-front.png.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── treeGreen_large.mat │ │ │ │ │ └── treeGreen_large.mat.meta │ │ │ │ ├── dungeon_tilemap_packed.png │ │ │ │ ├── dungeon_tilemap_packed.png.meta │ │ │ │ ├── hexagonObjects_sheet.png │ │ │ │ ├── hexagonObjects_sheet.png.meta │ │ │ │ ├── sheet.png │ │ │ │ ├── sheet.png.meta │ │ │ │ ├── treeGreen_large.png │ │ │ │ └── treeGreen_large.png.meta │ │ │ ├── TurnBased.meta │ │ │ └── TurnBased │ │ │ │ ├── Actions.meta │ │ │ │ ├── Actions │ │ │ │ ├── TurnWanderAction.cs │ │ │ │ ├── TurnWanderAction.cs.meta │ │ │ │ ├── WanderAction.cs │ │ │ │ └── WanderAction.cs.meta │ │ │ │ ├── Behaviours.meta │ │ │ │ ├── Behaviours │ │ │ │ ├── GameBehaviour.cs │ │ │ │ ├── GameBehaviour.cs.meta │ │ │ │ ├── GridBehaviour.cs │ │ │ │ ├── GridBehaviour.cs.meta │ │ │ │ ├── GridMoveBehaviour.cs │ │ │ │ ├── GridMoveBehaviour.cs.meta │ │ │ │ ├── InjectBehaviour.cs │ │ │ │ ├── InjectBehaviour.cs.meta │ │ │ │ ├── PathfindingBehaviour.cs │ │ │ │ ├── PathfindingBehaviour.cs.meta │ │ │ │ ├── TestBehaviour.cs │ │ │ │ ├── TestBehaviour.cs.meta │ │ │ │ ├── TileBehaviour.cs │ │ │ │ ├── TileBehaviour.cs.meta │ │ │ │ ├── TurnAnimationBehaviour.cs │ │ │ │ ├── TurnAnimationBehaviour.cs.meta │ │ │ │ ├── TurnBehaviour.cs │ │ │ │ ├── TurnBehaviour.cs.meta │ │ │ │ ├── TurnGoapConfigInitializer.cs │ │ │ │ └── TurnGoapConfigInitializer.cs.meta │ │ │ │ ├── Extensions.cs │ │ │ │ ├── Extensions.cs.meta │ │ │ │ ├── Factories.meta │ │ │ │ ├── Factories │ │ │ │ ├── TurnGoapSetFactory.cs │ │ │ │ └── TurnGoapSetFactory.cs.meta │ │ │ │ ├── GOAP.asset │ │ │ │ ├── GOAP.asset.meta │ │ │ │ ├── Goals.meta │ │ │ │ ├── Goals │ │ │ │ ├── WanderGoal.cs │ │ │ │ └── WanderGoal.cs.meta │ │ │ │ ├── Interfaces.meta │ │ │ │ ├── Interfaces │ │ │ │ ├── IGrid.cs │ │ │ │ ├── IGrid.cs.meta │ │ │ │ ├── IInjectable.cs │ │ │ │ ├── IInjectable.cs.meta │ │ │ │ ├── IPathfinding.cs │ │ │ │ ├── IPathfinding.cs.meta │ │ │ │ ├── ITile.cs │ │ │ │ └── ITile.cs.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── Tile.prefab │ │ │ │ ├── Tile.prefab.meta │ │ │ │ ├── TurnAgent.prefab │ │ │ │ └── TurnAgent.prefab.meta │ │ │ │ ├── Sensors.meta │ │ │ │ ├── Sensors │ │ │ │ ├── Target.meta │ │ │ │ └── Target │ │ │ │ │ ├── TurnWanderTargetSensor.cs │ │ │ │ │ └── TurnWanderTargetSensor.cs.meta │ │ │ │ ├── TargetKeys.meta │ │ │ │ ├── TargetKeys │ │ │ │ ├── WanderTarget.cs │ │ │ │ └── WanderTarget.cs.meta │ │ │ │ ├── TileTarget.cs │ │ │ │ ├── TileTarget.cs.meta │ │ │ │ ├── TurnAgentBrain.cs │ │ │ │ ├── TurnAgentBrain.cs.meta │ │ │ │ ├── TurnBased.unity │ │ │ │ ├── TurnBased.unity.meta │ │ │ │ ├── WorldKeys.meta │ │ │ │ ├── WorldKeys │ │ │ │ ├── IsWandering.cs │ │ │ │ └── IsWandering.cs.meta │ │ │ │ ├── com.crashkonijn.goap.demos.turn-based.asmdef │ │ │ │ └── com.crashkonijn.goap.demos.turn-based.asmdef.meta │ │ │ ├── README.pdf │ │ │ └── README.pdf.meta │ ├── Docs.meta │ ├── Docs │ │ ├── GettingStarted.meta │ │ ├── GettingStarted │ │ │ ├── Actions.meta │ │ │ ├── Actions │ │ │ │ ├── EatAction.cs │ │ │ │ ├── EatAction.cs.meta │ │ │ │ ├── IdleAction.cs │ │ │ │ ├── IdleAction.cs.meta │ │ │ │ ├── PickupPearAction.cs │ │ │ │ └── PickupPearAction.cs.meta │ │ │ ├── AgentTypes.meta │ │ │ ├── AgentTypes │ │ │ │ ├── DemoAgentTypeConfig.asset │ │ │ │ ├── DemoAgentTypeConfig.asset.meta │ │ │ │ ├── DemoAgentTypeFactory.cs │ │ │ │ └── DemoAgentTypeFactory.cs.meta │ │ │ ├── Behaviours.meta │ │ │ ├── Behaviours │ │ │ │ ├── AgentMoveBehaviour.cs │ │ │ │ ├── AgentMoveBehaviour.cs.meta │ │ │ │ ├── BrainBehaviour.cs │ │ │ │ ├── BrainBehaviour.cs.meta │ │ │ │ ├── DataBehaviour.cs │ │ │ │ ├── DataBehaviour.cs.meta │ │ │ │ ├── PearBehaviour.cs │ │ │ │ └── PearBehaviour.cs.meta │ │ │ ├── Capabilities.meta │ │ │ ├── Capabilities │ │ │ │ ├── EatCapabilityConfig.asset │ │ │ │ ├── EatCapabilityConfig.asset.meta │ │ │ │ ├── EatCapabilityFactory.cs │ │ │ │ ├── EatCapabilityFactory.cs.meta │ │ │ │ ├── IdleCapabilityConfig.asset │ │ │ │ ├── IdleCapabilityConfig.asset.meta │ │ │ │ ├── IdleCapabilityFactory.cs │ │ │ │ ├── IdleCapabilityFactory.cs.meta │ │ │ │ ├── PearCapability.cs │ │ │ │ ├── PearCapability.cs.meta │ │ │ │ ├── PearCapabilityConfig.asset │ │ │ │ └── PearCapabilityConfig.asset.meta │ │ │ ├── GettingStarted.unity │ │ │ ├── GettingStarted.unity.meta │ │ │ ├── GettingStartedGenerator.asset │ │ │ ├── GettingStartedGenerator.asset.meta │ │ │ ├── Goals.meta │ │ │ ├── Goals │ │ │ │ ├── EatGoal.cs │ │ │ │ ├── EatGoal.cs.meta │ │ │ │ ├── IdleGoal.cs │ │ │ │ ├── IdleGoal.cs.meta │ │ │ │ ├── PickupPearGoal.cs │ │ │ │ └── PickupPearGoal.cs.meta │ │ │ ├── PearMaterial.mat │ │ │ ├── PearMaterial.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Pear.prefab │ │ │ │ └── Pear.prefab.meta │ │ │ ├── Sensors.meta │ │ │ ├── Sensors │ │ │ │ ├── IdleTargetSensor.cs │ │ │ │ ├── IdleTargetSensor.cs.meta │ │ │ │ ├── PearSensor.cs │ │ │ │ └── PearSensor.cs.meta │ │ │ ├── TargetKeys.meta │ │ │ ├── TargetKeys │ │ │ │ ├── ClosestPear.cs │ │ │ │ ├── ClosestPear.cs.meta │ │ │ │ ├── IdleTarget.cs │ │ │ │ └── IdleTarget.cs.meta │ │ │ ├── WorldKeys.meta │ │ │ ├── WorldKeys │ │ │ │ ├── Hunger.cs │ │ │ │ ├── Hunger.cs.meta │ │ │ │ ├── IsIdle.cs │ │ │ │ ├── IsIdle.cs.meta │ │ │ │ ├── PearCount.cs │ │ │ │ └── PearCount.cs.meta │ │ │ ├── com.crashkonijn.docs.getting_started.asmdef │ │ │ └── com.crashkonijn.docs.getting_started.asmdef.meta │ │ ├── Snippets.meta │ │ └── Snippets │ │ │ ├── GettingStarted.meta │ │ │ └── GettingStarted │ │ │ ├── 01_IdleAction.cs │ │ │ └── 01_IdleAction.cs.meta │ ├── EmptyScene.unity │ ├── EmptyScene.unity.meta │ ├── Tests.meta │ ├── Tests │ │ ├── PlayMode.meta │ │ └── PlayMode │ │ │ ├── ComplexSceneTests.cs │ │ │ ├── ComplexSceneTests.cs.meta │ │ │ ├── PlayModeTests.asmdef │ │ │ ├── PlayModeTests.asmdef.meta │ │ │ ├── SimpleSceneTests.cs │ │ │ └── SimpleSceneTests.cs.meta │ ├── TextMesh Pro.meta │ └── TextMesh Pro │ │ ├── Documentation.meta │ │ ├── Documentation │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Fonts.meta │ │ ├── Fonts │ │ ├── LiberationSans - OFL.txt │ │ ├── LiberationSans - OFL.txt.meta │ │ ├── LiberationSans.ttf │ │ └── LiberationSans.ttf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ ├── Fonts & Materials.meta │ │ ├── Fonts & Materials │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ ├── LiberationSans SDF.asset │ │ │ └── LiberationSans SDF.asset.meta │ │ ├── LineBreaking Following Characters.txt │ │ ├── LineBreaking Following Characters.txt.meta │ │ ├── LineBreaking Leading Characters.txt │ │ ├── LineBreaking Leading Characters.txt.meta │ │ ├── Sprite Assets.meta │ │ ├── Sprite Assets │ │ │ ├── EmojiOne.asset │ │ │ └── EmojiOne.asset.meta │ │ ├── Style Sheets.meta │ │ ├── Style Sheets │ │ │ ├── Default Style Sheet.asset │ │ │ └── Default Style Sheet.asset.meta │ │ ├── TMP Settings.asset │ │ └── TMP Settings.asset.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF SSD.shader │ │ ├── TMP_SDF SSD.shader.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile SSD.shader │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Mobile.cginc │ │ ├── TMPro_Mobile.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ ├── EmojiOne Attribution.txt │ │ ├── EmojiOne Attribution.txt.meta │ │ ├── EmojiOne.json │ │ ├── EmojiOne.json.meta │ │ ├── EmojiOne.png │ │ └── EmojiOne.png.meta ├── CrashKonijn.Agent.Core.csproj.DotSettings ├── CrashKonijn.Agent.Runtime.csproj.DotSettings ├── CrashKonijn.Goap.Core.csproj.DotSettings ├── CrashKonijn.Goap.Editor.csproj.DotSettings ├── CrashKonijn.Goap.Resolver.csproj.DotSettings ├── CrashKonijn.Goap.Runtime.csproj.DotSettings ├── CrashKonijn.Goap.csproj.DotSettings ├── Demo.sln.DotSettings ├── LamosInteractive.Goap.Unity.csproj.DotSettings ├── Packages │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── BurstAotSettings_Android.json │ ├── BurstAotSettings_StandaloneWindows.json │ ├── BurstAotSettings_WebGL.json │ ├── ClusterInputManager.asset │ ├── CommonBurstAotSettings.json │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ │ └── com.unity.testtools.codecoverage │ │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── RiderScriptEditorPersistedState.asset │ ├── SceneTemplateSettings.json │ ├── ShaderGraphSettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── TimelineSettings.asset │ ├── URPProjectSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset ├── UIElementsSchema │ ├── GlobalNamespace.xsd │ ├── UIElements.xsd │ ├── Unity.Cloud.Collaborate.Components.ChangeListEntries.xsd │ ├── Unity.Cloud.Collaborate.Components.xsd │ ├── Unity.Cloud.Collaborate.Views.xsd │ ├── Unity.Profiling.Editor.xsd │ ├── Unity.UI.Builder.xsd │ ├── UnityEditor.Experimental.GraphView.xsd │ ├── UnityEditor.Overlays.xsd │ ├── UnityEditor.PackageManager.UI.Internal.xsd │ ├── UnityEditor.Rendering.LookDev.xsd │ ├── UnityEditor.Search.xsd │ ├── UnityEditor.ShaderGraph.Drawing.xsd │ ├── UnityEditor.ShortcutManagement.xsd │ ├── UnityEditor.UIElements.Debugger.xsd │ ├── UnityEditor.UIElements.xsd │ └── UnityEngine.UIElements.xsd ├── UnityGoap.sln.DotSettings ├── com.crashkonijn.docs.getting_started.csproj.DotSettings ├── com.crashkonijn.goap.demos.complex.csproj.DotSettings ├── com.crashkonijn.goap.demos.simple.csproj.DotSettings └── com.crashkonijn.goap.demos.turn-based.csproj.DotSettings ├── LICENSE ├── Package ├── Documentation.meta ├── Documentation │ ├── .idea │ │ ├── .gitignore │ │ ├── Documentation.iml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── Classes.meta │ ├── Classes │ │ ├── Actions.md │ │ ├── Actions.md.meta │ │ ├── AgentBehaviourAndActionProvider.md │ │ ├── AgentBehaviourAndActionProvider.md.meta │ │ ├── Goals.md │ │ ├── Goals.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Sensors.md │ │ ├── Sensors.md.meta │ │ ├── TargetKeys.md │ │ ├── TargetKeys.md.meta │ │ ├── WorldKeys.md │ │ └── WorldKeys.md.meta │ ├── Config.meta │ ├── Config │ │ ├── Code.md │ │ ├── Code.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── ScriptableObjects.md │ │ └── ScriptableObjects.md.meta │ ├── Examples.meta │ ├── Examples │ │ ├── Complex.md │ │ ├── Complex.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Simple.md │ │ └── Simple.md.meta │ ├── General.meta │ ├── General │ │ ├── AgentTypeAndCapabilities.md │ │ ├── AgentTypeAndCapabilities.md.meta │ │ ├── ConditionsAndEffects.md │ │ ├── ConditionsAndEffects.md.meta │ │ ├── Controllers.md │ │ ├── Controllers.md.meta │ │ ├── Generator.md │ │ ├── Generator.md.meta │ │ ├── GraphViewer.md │ │ ├── GraphViewer.md.meta │ │ ├── Injection.md │ │ ├── Injection.md.meta │ │ ├── LifeCycle.md │ │ ├── LifeCycle.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── WorldState.md │ │ └── WorldState.md.meta │ ├── Introduction.meta │ ├── Introduction │ │ ├── FAQ.md │ │ ├── FAQ.md.meta │ │ ├── GettingStarted.md │ │ ├── GettingStarted.md.meta │ │ ├── Pears.md │ │ ├── Pears.md.meta │ │ ├── Setup.md │ │ ├── Setup.md.meta │ │ ├── Theory.md │ │ └── Theory.md.meta │ ├── README.md │ ├── README.md.meta │ ├── SUMMARY.md │ ├── SUMMARY.md.meta │ ├── images.meta │ ├── images │ │ ├── 2k_agents_short.gif │ │ ├── 2k_agents_short.gif.meta │ │ ├── class_overview.png │ │ ├── class_overview.png.meta │ │ ├── demo_complex_cleaner_graph.png │ │ ├── demo_complex_cleaner_graph.png.meta │ │ ├── demo_complex_miner_graph.png │ │ ├── demo_complex_miner_graph.png.meta │ │ ├── demo_complex_smith_graph.png │ │ ├── demo_complex_smith_graph.png.meta │ │ ├── demo_complex_woodcutter_graph.png │ │ ├── demo_complex_woodcutter_graph.png.meta │ │ ├── demo_simple_graph.png │ │ ├── demo_simple_graph.png.meta │ │ ├── faq_target_with_move_actions.png │ │ ├── faq_target_with_move_actions.png.meta │ │ ├── faq_target_without_move_action.png │ │ ├── faq_target_without_move_action.png.meta │ │ ├── generator_folder.png │ │ ├── generator_folder.png.meta │ │ ├── generator_scriptable.png │ │ ├── generator_scriptable.png.meta │ │ ├── getting_started.meta │ │ ├── getting_started │ │ │ ├── demo_agent_type_config_idle.png │ │ │ ├── demo_agent_type_config_idle.png.meta │ │ │ ├── first_idle_run.gif │ │ │ ├── first_idle_run.gif.meta │ │ │ ├── generator_classes.png │ │ │ ├── generator_classes.png.meta │ │ │ ├── generator_namespace.png │ │ │ ├── generator_namespace.png.meta │ │ │ ├── goap_behaviour_script.png │ │ │ ├── goap_behaviour_script.png.meta │ │ │ ├── graph_full.png │ │ │ ├── graph_full.png.meta │ │ │ ├── graph_pickup.png │ │ │ ├── graph_pickup.png.meta │ │ │ ├── idle_agent_type_graph_view.png │ │ │ ├── idle_agent_type_graph_view.png.meta │ │ │ ├── idle_capability_config.png │ │ │ ├── idle_capability_config.png.meta │ │ │ ├── idle_goal_config.gif │ │ │ ├── idle_goal_config.gif.meta │ │ │ ├── pickup_pears_run.gif │ │ │ ├── pickup_pears_run.gif.meta │ │ │ ├── second_idle_run.gif │ │ │ └── second_idle_run.gif.meta │ │ ├── getting_started_agent.png │ │ ├── getting_started_agent.png.meta │ │ ├── getting_started_config_agent.png │ │ ├── getting_started_config_agent.png.meta │ │ ├── getting_started_config_goap_set.png │ │ ├── getting_started_config_goap_set.png.meta │ │ ├── getting_started_config_goap_set_go.png │ │ ├── getting_started_config_goap_set_go.png.meta │ │ ├── getting_started_config_wander_action.png │ │ ├── getting_started_config_wander_action.png.meta │ │ ├── getting_started_config_wander_goal.png │ │ ├── getting_started_config_wander_goal.png.meta │ │ ├── getting_started_config_wander_target_sensor.png │ │ ├── getting_started_config_wander_target_sensor.png.meta │ │ ├── getting_started_goap_runner.png │ │ ├── getting_started_goap_runner.png.meta │ │ ├── getting_started_goap_runner_01.png │ │ ├── getting_started_goap_runner_01.png.meta │ │ ├── getting_started_graph_builder.png │ │ ├── getting_started_graph_builder.png.meta │ │ ├── goap-set.png │ │ ├── goap-set.png.meta │ │ ├── goap-viewer.png │ │ ├── goap-viewer.png.meta │ │ ├── goap_config_initializer.png │ │ ├── goap_config_initializer.png.meta │ │ ├── lifecycle_agent_run.png │ │ ├── lifecycle_agent_run.png.meta │ │ ├── lifecycle_agent_set_action.png │ │ ├── lifecycle_agent_set_action.png.meta │ │ ├── lifecycle_agent_set_goal.png │ │ ├── lifecycle_agent_set_goal.png.meta │ │ ├── lifecycle_goap_runner_complete.png │ │ ├── lifecycle_goap_runner_complete.png.meta │ │ ├── lifecycle_goap_runner_run.png │ │ ├── lifecycle_goap_runner_run.png.meta │ │ ├── scriptable_configs.png │ │ ├── scriptable_configs.png.meta │ │ ├── scripts_goap_behaviour.png │ │ ├── scripts_goap_behaviour.png.meta │ │ ├── sensor_flow.png │ │ ├── sensor_flow.png.meta │ │ ├── v3_action_props.png │ │ ├── v3_action_props.png.meta │ │ ├── v3_agent_and_action_provider.png │ │ ├── v3_agent_and_action_provider.png.meta │ │ ├── v3_capability_config.png │ │ ├── v3_capability_config.png.meta │ │ ├── v3_capability_inspector.gif │ │ ├── v3_capability_inspector.gif.meta │ │ ├── v3_folder_structure.png │ │ ├── v3_folder_structure.png.meta │ │ ├── v3_generator.png │ │ ├── v3_generator.png.meta │ │ ├── v3_graph_viewer.gif │ │ ├── v3_graph_viewer.gif.meta │ │ ├── v3_inspector_class_reference.png │ │ └── v3_inspector_class_reference.png.meta │ ├── upgrade.meta │ ├── upgrade │ │ ├── core-concepts.md │ │ ├── core-concepts.md.meta │ │ ├── upgrade-guide-2.0-2.1.md │ │ ├── upgrade-guide-2.0-2.1.md.meta │ │ ├── upgrade-guide-2.1-3.0.md │ │ └── upgrade-guide-2.1-3.0.md.meta │ ├── upgrading.meta │ └── upgrading │ │ ├── README.md │ │ └── README.md.meta ├── Editor.meta ├── Editor │ ├── CrashKonijn.Goap.Editor.meta │ └── CrashKonijn.Goap.Editor │ │ ├── About.meta │ │ ├── About │ │ ├── AboutEditorWindow.cs │ │ └── AboutEditorWindow.cs.meta │ │ ├── Attributes.meta │ │ ├── Attributes │ │ ├── ActionClassDrawer.cs │ │ ├── ActionClassDrawer.cs.meta │ │ ├── ButtonAttribute.cs │ │ ├── ButtonAttribute.cs.meta │ │ ├── ClassDrawerBase.cs │ │ ├── ClassDrawerBase.cs.meta │ │ ├── GoalClassDrawer.cs │ │ ├── GoalClassDrawer.cs.meta │ │ ├── TargetSensorDrawer.cs │ │ ├── TargetSensorDrawer.cs.meta │ │ ├── WorldSensorDrawer.cs │ │ └── WorldSensorDrawer.cs.meta │ │ ├── Classes.meta │ │ ├── Classes │ │ ├── DebugGraph.cs │ │ ├── DebugGraph.cs.meta │ │ ├── Mappers.cs │ │ ├── Mappers.cs.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── Graph.cs │ │ │ ├── Graph.cs.meta │ │ │ ├── Node.cs │ │ │ ├── Node.cs.meta │ │ │ ├── NodeCondition.cs │ │ │ ├── NodeCondition.cs.meta │ │ │ ├── NodeEffect.cs │ │ │ └── NodeEffect.cs.meta │ │ ├── Nodes.cs │ │ ├── Nodes.cs.meta │ │ ├── RenderNode.cs │ │ └── RenderNode.cs.meta │ │ ├── Drawers.meta │ │ ├── Drawers │ │ ├── AgentTypeDrawer.cs │ │ ├── AgentTypeDrawer.cs.meta │ │ ├── BezierDrawer.cs │ │ ├── BezierDrawer.cs.meta │ │ ├── DragDrawer.cs │ │ ├── DragDrawer.cs.meta │ │ ├── LineDrawer.cs │ │ ├── LineDrawer.cs.meta │ │ ├── LogDrawer.cs │ │ ├── LogDrawer.cs.meta │ │ ├── ObjectDrawer.cs │ │ ├── ObjectDrawer.cs.meta │ │ ├── SerializableEffectDrawer.cs │ │ ├── SerializableEffectDrawer.cs.meta │ │ ├── WorldDataDrawer.cs │ │ └── WorldDataDrawer.cs.meta │ │ ├── Elements.meta │ │ ├── Elements │ │ ├── ActionList.cs │ │ ├── ActionList.cs.meta │ │ ├── ActionPropertiesElement.cs │ │ ├── ActionPropertiesElement.cs.meta │ │ ├── CapabilityActionElement.cs │ │ ├── CapabilityActionElement.cs.meta │ │ ├── CapabilityConditionElement.cs │ │ ├── CapabilityConditionElement.cs.meta │ │ ├── CapabilityEffectElement.cs │ │ ├── CapabilityEffectElement.cs.meta │ │ ├── CapabilityGoalElement.cs │ │ ├── CapabilityGoalElement.cs.meta │ │ ├── CapabilitySensorElement.cs │ │ ├── CapabilitySensorElement.cs.meta │ │ ├── Card.cs │ │ ├── Card.cs.meta │ │ ├── Circle.cs │ │ ├── Circle.cs.meta │ │ ├── ClassRefField.cs │ │ ├── ClassRefField.cs.meta │ │ ├── ConditionList.cs │ │ ├── ConditionList.cs.meta │ │ ├── EffectList.cs │ │ ├── EffectList.cs.meta │ │ ├── GoalList.cs │ │ ├── GoalList.cs.meta │ │ ├── Header.cs │ │ ├── Header.cs.meta │ │ ├── HorizontalSplitView.cs │ │ ├── HorizontalSplitView.cs.meta │ │ ├── LabeledField.cs │ │ ├── LabeledField.cs.meta │ │ ├── ListElementBase.cs │ │ ├── ListElementBase.cs.meta │ │ ├── SensorList.cs │ │ └── SensorList.cs.meta │ │ ├── Extensions.cs │ │ ├── Extensions.cs.meta │ │ ├── GoapEditorSettings.cs │ │ ├── GoapEditorSettings.cs.meta │ │ ├── GraphViewer.meta │ │ ├── GraphViewer │ │ ├── ConditionElement.cs │ │ ├── ConditionElement.cs.meta │ │ ├── ConnectionElement.cs │ │ ├── ConnectionElement.cs.meta │ │ ├── EditorWindowValues.cs │ │ ├── EditorWindowValues.cs.meta │ │ ├── EffectElement.cs │ │ ├── EffectElement.cs.meta │ │ ├── GraphViewerEditorWindow.cs │ │ ├── GraphViewerEditorWindow.cs.meta │ │ ├── NodeElement.cs │ │ ├── NodeElement.cs.meta │ │ ├── ToolbarElement.cs │ │ └── ToolbarElement.cs.meta │ │ ├── Styles.meta │ │ ├── Styles │ │ ├── About.uss │ │ ├── About.uss.meta │ │ ├── Generic.uss │ │ ├── Generic.uss.meta │ │ ├── GraphViewer.uss │ │ └── GraphViewer.uss.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ ├── background_grid.png │ │ ├── background_grid.png.meta │ │ ├── goap_header.png │ │ └── goap_header.png.meta │ │ ├── TypeDrawers.meta │ │ ├── TypeDrawers │ │ ├── AgentEditor.cs │ │ ├── AgentEditor.cs.meta │ │ ├── AgentTypeFactoryBaseEditor.cs │ │ ├── AgentTypeFactoryBaseEditor.cs.meta │ │ ├── CapabilityConfigScriptableEditor.cs │ │ ├── CapabilityConfigScriptableEditor.cs.meta │ │ ├── GeneratorEditor.cs │ │ ├── GeneratorEditor.cs.meta │ │ ├── GoapActionProviderEditor.cs │ │ ├── GoapActionProviderEditor.cs.meta │ │ ├── GoapRunnerEditor.cs │ │ ├── GoapRunnerEditor.cs.meta │ │ ├── GoapSetConfigEditor.cs │ │ └── GoapSetConfigEditor.cs.meta │ │ ├── com.crashkonijn.goap.editor.asmdef │ │ └── com.crashkonijn.goap.editor.asmdef.meta ├── Runtime.meta ├── Runtime │ ├── CrashKonijn.Agent.Core.meta │ ├── CrashKonijn.Agent.Core │ │ ├── Delegates.cs │ │ ├── Delegates.cs.meta │ │ ├── Enums.meta │ │ ├── Enums │ │ │ ├── ActionMoveMode.cs │ │ │ ├── ActionMoveMode.cs.meta │ │ │ ├── AgentMoveState.cs │ │ │ ├── AgentMoveState.cs.meta │ │ │ ├── AgentState.cs │ │ │ ├── AgentState.cs.meta │ │ │ ├── DebugMode.cs │ │ │ ├── DebugMode.cs.meta │ │ │ ├── DebugSeverity.cs │ │ │ └── DebugSeverity.cs.meta │ │ ├── Extensions.cs │ │ ├── Extensions.cs.meta │ │ ├── Interfaces.meta │ │ ├── Interfaces │ │ │ ├── IAction.cs │ │ │ ├── IAction.cs.meta │ │ │ ├── IActionContext.cs │ │ │ ├── IActionContext.cs.meta │ │ │ ├── IActionData.cs │ │ │ ├── IActionData.cs.meta │ │ │ ├── IActionDisabler.cs │ │ │ ├── IActionDisabler.cs.meta │ │ │ ├── IActionProperties.cs │ │ │ ├── IActionProperties.cs.meta │ │ │ ├── IActionProvider.cs │ │ │ ├── IActionProvider.cs.meta │ │ │ ├── IActionReceiver.cs │ │ │ ├── IActionReceiver.cs.meta │ │ │ ├── IActionRunState.cs │ │ │ ├── IActionRunState.cs.meta │ │ │ ├── IActionState.cs │ │ │ ├── IActionState.cs.meta │ │ │ ├── IAgent.cs │ │ │ ├── IAgent.cs.meta │ │ │ ├── IAgentDistanceObserver.cs │ │ │ ├── IAgentDistanceObserver.cs.meta │ │ │ ├── IAgentEvents.cs │ │ │ ├── IAgentEvents.cs.meta │ │ │ ├── IAgentTimers.cs │ │ │ ├── IAgentTimers.cs.meta │ │ │ ├── IComponentReference.cs │ │ │ ├── IComponentReference.cs.meta │ │ │ ├── IDataReferenceInjector.cs │ │ │ ├── IDataReferenceInjector.cs.meta │ │ │ ├── ILogger.cs │ │ │ ├── ILogger.cs.meta │ │ │ ├── ILoggerConfig.cs │ │ │ ├── ILoggerConfig.cs.meta │ │ │ ├── IMonoAgent.cs │ │ │ ├── IMonoAgent.cs.meta │ │ │ ├── IMonoBehaviour.cs │ │ │ ├── IMonoBehaviour.cs.meta │ │ │ ├── ITarget.cs │ │ │ ├── ITarget.cs.meta │ │ │ ├── ITimer.cs │ │ │ └── ITimer.cs.meta │ │ ├── com.crashkonijn.agent.core.asmdef │ │ └── com.crashkonijn.agent.core.asmdef.meta │ ├── CrashKonijn.Agent.Runtime.meta │ ├── CrashKonijn.Agent.Runtime │ │ ├── ActionBase.cs │ │ ├── ActionBase.cs.meta │ │ ├── ActionContext.cs │ │ ├── ActionContext.cs.meta │ │ ├── ActionProviderBase.cs │ │ ├── ActionProviderBase.cs.meta │ │ ├── ActionRunner.cs │ │ ├── ActionRunner.cs.meta │ │ ├── ActionState.cs │ │ ├── ActionState.cs.meta │ │ ├── AgentActionBase.cs │ │ ├── AgentActionBase.cs.meta │ │ ├── AgentBehaviour.cs │ │ ├── AgentBehaviour.cs.meta │ │ ├── AgentEvents.cs │ │ ├── AgentEvents.cs.meta │ │ ├── AgentException.cs │ │ ├── AgentException.cs.meta │ │ ├── AgentLogger.cs │ │ ├── AgentLogger.cs.meta │ │ ├── AgentTimers.cs │ │ ├── AgentTimers.cs.meta │ │ ├── DataReferenceInjector.cs │ │ ├── DataReferenceInjector.cs.meta │ │ ├── Disablers.meta │ │ ├── Disablers │ │ │ ├── ActionDisabler.cs │ │ │ ├── ActionDisabler.cs.meta │ │ │ ├── ForTimeActionDisabler.cs │ │ │ ├── ForTimeActionDisabler.cs.meta │ │ │ ├── ForeverActionDisabler.cs │ │ │ └── ForeverActionDisabler.cs.meta │ │ ├── EmptyActionProperties.cs │ │ ├── EmptyActionProperties.cs.meta │ │ ├── Extensions.cs │ │ ├── Extensions.cs.meta │ │ ├── LoggerBase.cs │ │ ├── LoggerBase.cs.meta │ │ ├── LoggerConfig.cs │ │ ├── LoggerConfig.cs.meta │ │ ├── References.meta │ │ ├── References │ │ │ ├── GetComponentAttribute.cs │ │ │ ├── GetComponentAttribute.cs.meta │ │ │ ├── GetComponentInChildrenAttribute.cs │ │ │ ├── GetComponentInChildrenAttribute.cs.meta │ │ │ ├── GetComponentInParentAttribute.cs │ │ │ └── GetComponentInParentAttribute.cs.meta │ │ ├── Timer.cs │ │ ├── Timer.cs.meta │ │ ├── VectorDistanceObserver.cs │ │ ├── VectorDistanceObserver.cs.meta │ │ ├── com.crashkonijn.agent.runtime.asmdef │ │ └── com.crashkonijn.agent.runtime.asmdef.meta │ ├── CrashKonijn.Goap.Core.meta │ ├── CrashKonijn.Goap.Core │ │ ├── Delegates.cs │ │ ├── Delegates.cs.meta │ │ ├── Enums.meta │ │ ├── Enums │ │ │ ├── ClassRefStatus.cs │ │ │ ├── ClassRefStatus.cs.meta │ │ │ ├── Comparison.cs │ │ │ ├── Comparison.cs.meta │ │ │ ├── EffectType.cs │ │ │ └── EffectType.cs.meta │ │ ├── Interfaces.meta │ │ ├── Interfaces │ │ │ ├── IActionConfig.cs │ │ │ ├── IActionConfig.cs.meta │ │ │ ├── IAgentCollection.cs │ │ │ ├── IAgentCollection.cs.meta │ │ │ ├── IAgentType.cs │ │ │ ├── IAgentType.cs.meta │ │ │ ├── IAgentTypeConfig.cs │ │ │ ├── IAgentTypeConfig.cs.meta │ │ │ ├── IAgentTypeConfigValidatorRunner.cs │ │ │ ├── IAgentTypeConfigValidatorRunner.cs.meta │ │ │ ├── IAgentTypeEvents.cs │ │ │ ├── IAgentTypeEvents.cs.meta │ │ │ ├── IAgentTypeJobRunner.cs │ │ │ ├── IAgentTypeJobRunner.cs.meta │ │ │ ├── IClassConfig.cs │ │ │ ├── IClassConfig.cs.meta │ │ │ ├── IClassRef.cs │ │ │ ├── IClassRef.cs.meta │ │ │ ├── ICondition.cs │ │ │ ├── ICondition.cs.meta │ │ │ ├── IConditionObserver.cs │ │ │ ├── IConditionObserver.cs.meta │ │ │ ├── IConfig.cs │ │ │ ├── IConfig.cs.meta │ │ │ ├── IConnectable.cs │ │ │ ├── IConnectable.cs.meta │ │ │ ├── ICostObserver.cs │ │ │ ├── ICostObserver.cs.meta │ │ │ ├── IEffect.cs │ │ │ ├── IEffect.cs.meta │ │ │ ├── IGlobalTargetSensor.cs │ │ │ ├── IGlobalTargetSensor.cs.meta │ │ │ ├── IGlobalWorldData.cs │ │ │ ├── IGlobalWorldData.cs.meta │ │ │ ├── IGlobalWorldSensor.cs │ │ │ ├── IGlobalWorldSensor.cs.meta │ │ │ ├── IGoal.cs │ │ │ ├── IGoal.cs.meta │ │ │ ├── IGoalConfig.cs │ │ │ ├── IGoalConfig.cs.meta │ │ │ ├── IGoalRequest.cs │ │ │ ├── IGoalRequest.cs.meta │ │ │ ├── IGoap.cs │ │ │ ├── IGoap.cs.meta │ │ │ ├── IGoapAction.cs │ │ │ ├── IGoapAction.cs.meta │ │ │ ├── IGoapActionProvider.cs │ │ │ ├── IGoapActionProvider.cs.meta │ │ │ ├── IGoapActionProviderEvent.cs │ │ │ ├── IGoapActionProviderEvent.cs.meta │ │ │ ├── IGoapAgentEvents.cs │ │ │ ├── IGoapAgentEvents.cs.meta │ │ │ ├── IGoapConfig.cs │ │ │ ├── IGoapConfig.cs.meta │ │ │ ├── IGoapController.cs │ │ │ ├── IGoapController.cs.meta │ │ │ ├── IGoapEvents.cs │ │ │ ├── IGoapEvents.cs.meta │ │ │ ├── IGoapInjector.cs │ │ │ ├── IGoapInjector.cs.meta │ │ │ ├── IGoapResolver.cs │ │ │ ├── IGoapResolver.cs.meta │ │ │ ├── IGraph.cs │ │ │ ├── IGraph.cs.meta │ │ │ ├── IHasConfig.cs │ │ │ ├── IHasConfig.cs.meta │ │ │ ├── IKeyResolver.cs │ │ │ ├── IKeyResolver.cs.meta │ │ │ ├── ILocalTargetSensor.cs │ │ │ ├── ILocalTargetSensor.cs.meta │ │ │ ├── ILocalWorldData.cs │ │ │ ├── ILocalWorldData.cs.meta │ │ │ ├── ILocalWorldSensor.cs │ │ │ ├── ILocalWorldSensor.cs.meta │ │ │ ├── IMonoGoapActionProvider.cs │ │ │ ├── IMonoGoapActionProvider.cs.meta │ │ │ ├── IMultiSensor.cs │ │ │ ├── IMultiSensor.cs.meta │ │ │ ├── IMultiSensorConfig.cs │ │ │ ├── IMultiSensorConfig.cs.meta │ │ │ ├── INode.cs │ │ │ ├── INode.cs.meta │ │ │ ├── INodeCondition.cs │ │ │ ├── INodeCondition.cs.meta │ │ │ ├── INodeEffect.cs │ │ │ ├── INodeEffect.cs.meta │ │ │ ├── ISensorRunner.cs │ │ │ ├── ISensorRunner.cs.meta │ │ │ ├── ISensorTimer.cs │ │ │ ├── ISensorTimer.cs.meta │ │ │ ├── ITargetKey.cs │ │ │ ├── ITargetKey.cs.meta │ │ │ ├── ITargetSensor.cs │ │ │ ├── ITargetSensor.cs.meta │ │ │ ├── ITargetSensorConfig.cs │ │ │ ├── ITargetSensorConfig.cs.meta │ │ │ ├── IValidationResults.cs │ │ │ ├── IValidationResults.cs.meta │ │ │ ├── IValidator.cs │ │ │ ├── IValidator.cs.meta │ │ │ ├── IWorldData.cs │ │ │ ├── IWorldData.cs.meta │ │ │ ├── IWorldKey.cs │ │ │ ├── IWorldKey.cs.meta │ │ │ ├── IWorldSensor.cs │ │ │ ├── IWorldSensor.cs.meta │ │ │ ├── IWorldSensorConfig.cs │ │ │ └── IWorldSensorConfig.cs.meta │ │ ├── SenseValue.cs │ │ ├── SenseValue.cs.meta │ │ ├── com.crashkonijn.goap.core.asmdef │ │ └── com.crashkonijn.goap.core.asmdef.meta │ ├── CrashKonijn.Goap.Resolver.meta │ ├── CrashKonijn.Goap.Resolver │ │ ├── ConditionBuilder.cs │ │ ├── ConditionBuilder.cs.meta │ │ ├── CostBuilder.cs │ │ ├── CostBuilder.cs.meta │ │ ├── EnabledBuilder.cs │ │ ├── EnabledBuilder.cs.meta │ │ ├── ExecutableBuilder.cs │ │ ├── ExecutableBuilder.cs.meta │ │ ├── Extensions.cs │ │ ├── Extensions.cs.meta │ │ ├── GraphBuilder.cs │ │ ├── GraphBuilder.cs.meta │ │ ├── GraphResolver.cs │ │ ├── GraphResolver.cs.meta │ │ ├── GraphResolverJob.cs │ │ ├── GraphResolverJob.cs.meta │ │ ├── Interfaces.meta │ │ ├── Interfaces │ │ │ ├── IConditionBuilder.cs │ │ │ ├── IConditionBuilder.cs.meta │ │ │ ├── ICostBuilder.cs │ │ │ ├── ICostBuilder.cs.meta │ │ │ ├── IEnabledBuilder.cs │ │ │ ├── IEnabledBuilder.cs.meta │ │ │ ├── IExecutableBuilder.cs │ │ │ ├── IExecutableBuilder.cs.meta │ │ │ ├── IGraphResolver.cs │ │ │ ├── IGraphResolver.cs.meta │ │ │ ├── IPositionBuilder.cs │ │ │ ├── IPositionBuilder.cs.meta │ │ │ ├── IResolveHandle.cs │ │ │ └── IResolveHandle.cs.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── Graph.cs │ │ │ ├── Graph.cs.meta │ │ │ ├── Node.cs │ │ │ ├── Node.cs.meta │ │ │ ├── NodeCondition.cs │ │ │ ├── NodeCondition.cs.meta │ │ │ ├── NodeEffect.cs │ │ │ └── NodeEffect.cs.meta │ │ ├── NativeHeap.cs │ │ ├── NativeHeap.cs.meta │ │ ├── PositionBuilder.cs │ │ ├── PositionBuilder.cs.meta │ │ ├── ResolveHandle.cs │ │ ├── ResolveHandle.cs.meta │ │ ├── com.crashkonijn.goap.resolver.asmdef │ │ └── com.crashkonijn.goap.resolver.asmdef.meta │ ├── CrashKonijn.Goap.Runtime.meta │ └── CrashKonijn.Goap.Runtime │ │ ├── Attributes.meta │ │ ├── Attributes │ │ ├── ActionClassAttribute.cs │ │ ├── ActionClassAttribute.cs.meta │ │ ├── ButtonAttribute.cs │ │ ├── ButtonAttribute.cs.meta │ │ ├── GoalClassAttribute.cs │ │ ├── GoalClassAttribute.cs.meta │ │ ├── GoapIdAttribute.cs │ │ ├── GoapIdAttribute.cs.meta │ │ ├── TargetSensorAttribute.cs │ │ ├── TargetSensorAttribute.cs.meta │ │ ├── WorldSensorAttribute.cs │ │ └── WorldSensorAttribute.cs.meta │ │ ├── Behaviours.meta │ │ ├── Behaviours │ │ ├── ActionBase.cs │ │ ├── ActionBase.cs.meta │ │ ├── AgentCollection.cs │ │ ├── AgentCollection.cs.meta │ │ ├── AgentTypeBehaviour.cs │ │ ├── AgentTypeBehaviour.cs.meta │ │ ├── AgentTypeEvents.cs │ │ ├── AgentTypeEvents.cs.meta │ │ ├── AgentTypeFactoryBase.cs │ │ ├── AgentTypeFactoryBase.cs.meta │ │ ├── GoalBase.cs │ │ ├── GoalBase.cs.meta │ │ ├── GoapActionBase.cs │ │ ├── GoapActionBase.cs.meta │ │ ├── GoapActionProvider.cs │ │ ├── GoapActionProvider.cs.meta │ │ ├── GoapAgentEvents.cs │ │ ├── GoapAgentEvents.cs.meta │ │ ├── GoapBehaviour.cs │ │ ├── GoapBehaviour.cs.meta │ │ ├── GoapConfigBase.cs │ │ ├── GoapConfigBase.cs.meta │ │ ├── GoapEvents.cs │ │ ├── GoapEvents.cs.meta │ │ ├── GoapSetBehaviour.cs │ │ ├── GoapSetBehaviour.cs.meta │ │ ├── ManualControllerBehaviour.cs │ │ ├── ManualControllerBehaviour.cs.meta │ │ ├── ProactiveControllerBehaviour.cs │ │ ├── ProactiveControllerBehaviour.cs.meta │ │ ├── ReactiveControllerBehaviour.cs │ │ ├── ReactiveControllerBehaviour.cs.meta │ │ ├── TargetKeyBase.cs │ │ ├── TargetKeyBase.cs.meta │ │ ├── WorldKeyBase.cs │ │ └── WorldKeyBase.cs.meta │ │ ├── ClassScanner.cs │ │ ├── ClassScanner.cs.meta │ │ ├── Classes.meta │ │ ├── Classes │ │ ├── AgentType.cs │ │ ├── AgentType.cs.meta │ │ ├── AgentTypeFactory.cs │ │ ├── AgentTypeFactory.cs.meta │ │ ├── Builders.meta │ │ ├── Builders │ │ │ ├── ActionBuilder.cs │ │ │ ├── ActionBuilder.cs.meta │ │ │ ├── AgentTypeBuilder.cs │ │ │ ├── AgentTypeBuilder.cs.meta │ │ │ ├── CapabilityBuilder.cs │ │ │ ├── CapabilityBuilder.cs.meta │ │ │ ├── GoalBuilder.cs │ │ │ ├── GoalBuilder.cs.meta │ │ │ ├── KeyBuilderBase.cs │ │ │ ├── KeyBuilderBase.cs.meta │ │ │ ├── MultiSensorBuilder.cs │ │ │ ├── MultiSensorBuilder.cs.meta │ │ │ ├── TargetKeyBuilder.cs │ │ │ ├── TargetKeyBuilder.cs.meta │ │ │ ├── TargetSensorBuilder.cs │ │ │ ├── TargetSensorBuilder.cs.meta │ │ │ ├── WorldKeyBuilder.cs │ │ │ ├── WorldKeyBuilder.cs.meta │ │ │ ├── WorldSensorBuilder.cs │ │ │ └── WorldSensorBuilder.cs.meta │ │ ├── CapabilityFactory.cs │ │ ├── CapabilityFactory.cs.meta │ │ ├── Condition.cs │ │ ├── Condition.cs.meta │ │ ├── Controllers.meta │ │ ├── Controllers │ │ │ ├── ManualController.cs │ │ │ ├── ManualController.cs.meta │ │ │ ├── ProactiveController.cs │ │ │ ├── ProactiveController.cs.meta │ │ │ ├── ReactiveController.cs │ │ │ └── ReactiveController.cs.meta │ │ ├── Effect.cs │ │ ├── Effect.cs.meta │ │ ├── GoalRequest.cs │ │ ├── GoalRequest.cs.meta │ │ ├── GoapAgentLogger.cs │ │ ├── GoapAgentLogger.cs.meta │ │ ├── GoapConfig.cs │ │ ├── GoapConfig.cs.meta │ │ ├── Injectors.meta │ │ ├── Injectors │ │ │ ├── DefaultGoapInjector.cs │ │ │ └── DefaultGoapInjector.cs.meta │ │ ├── PositionTarget.cs │ │ ├── PositionTarget.cs.meta │ │ ├── RunStates.meta │ │ ├── RunStates │ │ │ ├── ActionRunState.cs │ │ │ ├── ActionRunState.cs.meta │ │ │ ├── CompletedActionRunState.cs │ │ │ ├── CompletedActionRunState.cs.meta │ │ │ ├── ContinueActionRunState.cs │ │ │ ├── ContinueActionRunState.cs.meta │ │ │ ├── ContinueOrResolveActionRunState.cs │ │ │ ├── ContinueOrResolveActionRunState.cs.meta │ │ │ ├── StopActionRunState.cs │ │ │ ├── StopActionRunState.cs.meta │ │ │ ├── StopAndLog.cs │ │ │ ├── StopAndLog.cs.meta │ │ │ ├── WaitActionRunState.cs │ │ │ ├── WaitActionRunState.cs.meta │ │ │ ├── WaitThenCompleteActionRunState.cs │ │ │ ├── WaitThenCompleteActionRunState.cs.meta │ │ │ ├── WaitThenStopActionRunState.cs │ │ │ └── WaitThenStopActionRunState.cs.meta │ │ ├── Runners.meta │ │ ├── Runners │ │ │ ├── AgentTypeJobRunner.cs │ │ │ ├── AgentTypeJobRunner.cs.meta │ │ │ ├── Goap.cs │ │ │ ├── Goap.cs.meta │ │ │ ├── SensorRunner.cs │ │ │ └── SensorRunner.cs.meta │ │ ├── TransformTarget.cs │ │ ├── TransformTarget.cs.meta │ │ ├── Validators.meta │ │ └── Validators │ │ │ ├── ActionClassTypeValidator.cs │ │ │ ├── ActionClassTypeValidator.cs.meta │ │ │ ├── ActionConditionKeyValidator.cs │ │ │ ├── ActionConditionKeyValidator.cs.meta │ │ │ ├── ActionEffectKeyValidator.cs │ │ │ ├── ActionEffectKeyValidator.cs.meta │ │ │ ├── ActionEffectsValidator.cs │ │ │ ├── ActionEffectsValidator.cs.meta │ │ │ ├── ActionTargetValidator.cs │ │ │ ├── ActionTargetValidator.cs.meta │ │ │ ├── AgentTypeConfigValidatorRunner.cs │ │ │ ├── AgentTypeConfigValidatorRunner.cs.meta │ │ │ ├── DuplicateTargetSensorValidator.cs │ │ │ ├── DuplicateTargetSensorValidator.cs.meta │ │ │ ├── DuplicateWorldSensorValidator.cs │ │ │ ├── DuplicateWorldSensorValidator.cs.meta │ │ │ ├── GoalClassTypeValidator.cs │ │ │ ├── GoalClassTypeValidator.cs.meta │ │ │ ├── GoalConditionKeyValidator.cs │ │ │ ├── GoalConditionKeyValidator.cs.meta │ │ │ ├── GoalConditionsValidator.cs │ │ │ ├── GoalConditionsValidator.cs.meta │ │ │ ├── TargetKeySensorsValidator.cs │ │ │ ├── TargetKeySensorsValidator.cs.meta │ │ │ ├── TargetSensorClassTypeValidator.cs │ │ │ ├── TargetSensorClassTypeValidator.cs.meta │ │ │ ├── TargetSensorKeyValidator.cs │ │ │ ├── TargetSensorKeyValidator.cs.meta │ │ │ ├── ValidationResults.cs │ │ │ ├── ValidationResults.cs.meta │ │ │ ├── WorldKeySensorsValidator.cs │ │ │ ├── WorldKeySensorsValidator.cs.meta │ │ │ ├── WorldSensorClassTypeValidator.cs │ │ │ ├── WorldSensorClassTypeValidator.cs.meta │ │ │ ├── WorldSensorKeyValidator.cs │ │ │ └── WorldSensorKeyValidator.cs.meta │ │ ├── Configs.meta │ │ ├── Configs │ │ ├── ActionConfig.cs │ │ ├── ActionConfig.cs.meta │ │ ├── AgentTypeConfig.cs │ │ ├── AgentTypeConfig.cs.meta │ │ ├── GoalConfig.cs │ │ ├── GoalConfig.cs.meta │ │ ├── MultiSensorConfig.cs │ │ ├── MultiSensorConfig.cs.meta │ │ ├── TargetKey.cs │ │ ├── TargetKey.cs.meta │ │ ├── TargetSensorConfig.cs │ │ ├── TargetSensorConfig.cs.meta │ │ ├── WorldKey.cs │ │ ├── WorldKey.cs.meta │ │ ├── WorldSensorConfig.cs │ │ └── WorldSensorConfig.cs.meta │ │ ├── Exceptions.meta │ │ ├── Exceptions │ │ ├── GoapException.cs │ │ └── GoapException.cs.meta │ │ ├── Extensions.cs │ │ ├── Extensions.cs.meta │ │ ├── Generators.meta │ │ ├── Generators │ │ ├── ClassGenerator.cs │ │ ├── ClassGenerator.cs.meta │ │ ├── Templates.meta │ │ └── Templates │ │ │ ├── action.template │ │ │ ├── action.template.meta │ │ │ ├── goal.template │ │ │ ├── goal.template.meta │ │ │ ├── multi-sensor.template │ │ │ ├── multi-sensor.template.meta │ │ │ ├── target-key.template │ │ │ ├── target-key.template.meta │ │ │ ├── world-key.template │ │ │ └── world-key.template.meta │ │ ├── GlobalWorldData.cs │ │ ├── GlobalWorldData.cs.meta │ │ ├── GuidCacheKey.cs │ │ ├── GuidCacheKey.cs.meta │ │ ├── LocalWorldData.cs │ │ ├── LocalWorldData.cs.meta │ │ ├── Observers.meta │ │ ├── Observers │ │ ├── ConditionObserver.cs │ │ ├── ConditionObserver.cs.meta │ │ ├── ConditionObserverBase.cs │ │ └── ConditionObserverBase.cs.meta │ │ ├── Resolvers.meta │ │ ├── Resolvers │ │ ├── ClassResolver.cs │ │ ├── ClassResolver.cs.meta │ │ ├── KeyResolver.cs │ │ ├── KeyResolver.cs.meta │ │ ├── KeyResolverBase.cs │ │ └── KeyResolverBase.cs.meta │ │ ├── Script.cs │ │ ├── Script.cs.meta │ │ ├── ScriptIdValidator.cs │ │ ├── ScriptIdValidator.cs.meta │ │ ├── Scriptables.meta │ │ ├── Scriptables │ │ ├── AgentTypeScriptable.cs │ │ ├── AgentTypeScriptable.cs.meta │ │ ├── CapabilityAction.cs │ │ ├── CapabilityAction.cs.meta │ │ ├── CapabilityCondition.cs │ │ ├── CapabilityCondition.cs.meta │ │ ├── CapabilityConfigScriptable.cs │ │ ├── CapabilityConfigScriptable.cs.meta │ │ ├── CapabilityEffect.cs │ │ ├── CapabilityEffect.cs.meta │ │ ├── CapabilityGoal.cs │ │ ├── CapabilityGoal.cs.meta │ │ ├── CapabilityMultiSensor.cs │ │ ├── CapabilityMultiSensor.cs.meta │ │ ├── CapabilitySensor.cs │ │ ├── CapabilitySensor.cs.meta │ │ ├── CapabilityTargetSensor.cs │ │ ├── CapabilityTargetSensor.cs.meta │ │ ├── CapabilityWorldSensor.cs │ │ ├── CapabilityWorldSensor.cs.meta │ │ ├── ClassRef.cs │ │ ├── ClassRef.cs.meta │ │ ├── GeneratorScriptable.cs │ │ ├── GeneratorScriptable.cs.meta │ │ ├── Legacy.meta │ │ └── Legacy │ │ │ ├── ActionConfigScriptable.cs │ │ │ ├── ActionConfigScriptable.cs.meta │ │ │ ├── GoalConfigScriptable.cs │ │ │ ├── GoalConfigScriptable.cs.meta │ │ │ ├── GoapSetConfigScriptable.cs │ │ │ ├── GoapSetConfigScriptable.cs.meta │ │ │ ├── SerializableCondition.cs │ │ │ ├── SerializableCondition.cs.meta │ │ │ ├── SerializableEffect.cs │ │ │ ├── SerializableEffect.cs.meta │ │ │ ├── TargetKeyScriptable.cs │ │ │ ├── TargetKeyScriptable.cs.meta │ │ │ ├── TargetSensorConfigScriptable.cs │ │ │ ├── TargetSensorConfigScriptable.cs.meta │ │ │ ├── WorldKeyScriptable.cs │ │ │ ├── WorldKeyScriptable.cs.meta │ │ │ ├── WorldSensorConfigScriptable.cs │ │ │ └── WorldSensorConfigScriptable.cs.meta │ │ ├── Scripts.cs │ │ ├── Scripts.cs.meta │ │ ├── SensorTimer.cs │ │ ├── SensorTimer.cs.meta │ │ ├── Sensors.meta │ │ ├── Sensors │ │ ├── GlobalSensor.cs │ │ ├── GlobalSensor.cs.meta │ │ ├── GlobalTargetSensorBase.cs │ │ ├── GlobalTargetSensorBase.cs.meta │ │ ├── GlobalWorldSensorBase.cs │ │ ├── GlobalWorldSensorBase.cs.meta │ │ ├── LocalSensor.cs │ │ ├── LocalSensor.cs.meta │ │ ├── LocalTargetSensorBase.cs │ │ ├── LocalTargetSensorBase.cs.meta │ │ ├── LocalWorldSensorBase.cs │ │ ├── LocalWorldSensorBase.cs.meta │ │ ├── MultiSensorBase.cs │ │ └── MultiSensorBase.cs.meta │ │ ├── WorldDataBase.cs │ │ ├── WorldDataBase.cs.meta │ │ ├── WorldSensorBase.cs │ │ ├── WorldSensorBase.cs.meta │ │ ├── com.crashkonijn.goap.runtime.asmdef │ │ └── com.crashkonijn.goap.runtime.asmdef.meta ├── Samples~ │ └── default │ │ ├── .gitkeep │ │ └── demo.unitypackage ├── Tests.meta ├── Tests │ ├── CrashKonijn.Goap.Tests.meta │ └── CrashKonijn.Goap.Tests │ │ ├── UnitTests.meta │ │ └── UnitTests │ │ ├── ActionRunnerTests.cs │ │ ├── ActionRunnerTests.cs.meta │ │ ├── AgentBehaviourTests.cs │ │ ├── AgentBehaviourTests.cs.meta │ │ ├── AgentTypeJobRunnerTests.cs │ │ ├── AgentTypeJobRunnerTests.cs.meta │ │ ├── ClassResolverTests.cs │ │ ├── ClassResolverTests.cs.meta │ │ ├── Classes.meta │ │ ├── Classes │ │ ├── TestAction.cs │ │ ├── TestAction.cs.meta │ │ ├── TestGoal.cs │ │ ├── TestGoal.cs.meta │ │ ├── TestKeys.cs │ │ └── TestKeys.cs.meta │ │ ├── ConditionObserverTests.cs │ │ ├── ConditionObserverTests.cs.meta │ │ ├── Data.meta │ │ ├── Data │ │ ├── Action.cs │ │ ├── Action.cs.meta │ │ ├── Goal.cs │ │ ├── Goal.cs.meta │ │ ├── LocalTargetSensor.cs │ │ ├── LocalTargetSensor.cs.meta │ │ ├── LocalWorldSensor.cs │ │ ├── LocalWorldSensor.cs.meta │ │ ├── StringCondition.cs │ │ ├── StringCondition.cs.meta │ │ ├── StringEffect.cs │ │ ├── StringEffect.cs.meta │ │ ├── TestConditionObserver.cs │ │ ├── TestConditionObserver.cs.meta │ │ ├── TestConnection.cs │ │ ├── TestConnection.cs.meta │ │ ├── TestKeyResolver.cs │ │ └── TestKeyResolver.cs.meta │ │ ├── GoapActionBaseTests.cs │ │ ├── GoapActionBaseTests.cs.meta │ │ ├── GoapActionProviderTests.cs │ │ ├── GoapActionProviderTests.cs.meta │ │ ├── GraphBuilderTests.cs │ │ ├── GraphBuilderTests.cs.meta │ │ ├── GraphResolverTests.cs │ │ ├── GraphResolverTests.cs.meta │ │ ├── Interfaces.meta │ │ ├── Interfaces │ │ ├── ITestAction.cs │ │ ├── ITestAction.cs.meta │ │ ├── ITestGoal.cs │ │ └── ITestGoal.cs.meta │ │ ├── ManualControllerTests.cs │ │ ├── ManualControllerTests.cs.meta │ │ ├── MultiSensorBaseTests.cs │ │ ├── MultiSensorBaseTests.cs.meta │ │ ├── ProactiveControllerTests.cs │ │ ├── ProactiveControllerTests.cs.meta │ │ ├── ReactiveControllerTests.cs │ │ ├── ReactiveControllerTests.cs.meta │ │ ├── SensorRunnerTests.cs │ │ ├── SensorRunnerTests.cs.meta │ │ ├── Support.meta │ │ ├── Support │ │ ├── Extensions.cs │ │ ├── Extensions.cs.meta │ │ ├── TestMockFactory.cs │ │ └── TestMockFactory.cs.meta │ │ ├── Validators.meta │ │ ├── Validators │ │ ├── TargetKeySensorsValidatorTests.cs │ │ ├── TargetKeySensorsValidatorTests.cs.meta │ │ ├── WorldKeySensorsValidatorTests.cs │ │ └── WorldKeySensorsValidatorTests.cs.meta │ │ ├── WorldDataBaseTests.cs │ │ ├── WorldDataBaseTests.cs.meta │ │ ├── com.crashkonijn.goap.tests.asmdef │ │ └── com.crashkonijn.goap.tests.asmdef.meta ├── package.json └── package.json.meta └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [crashkonijn] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/activation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/.github/workflows/activation.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/.github/workflows/pull-request-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/update-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/.github/workflows/update-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/.editorconfig -------------------------------------------------------------------------------- /Demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/.gitignore -------------------------------------------------------------------------------- /Demo/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/.vsconfig -------------------------------------------------------------------------------- /Demo/Assembly-CSharp-Editor.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assembly-CSharp-Editor.csproj.DotSettings -------------------------------------------------------------------------------- /Demo/Assembly-CSharp.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assembly-CSharp.csproj.DotSettings -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Animations.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Animations/BlueIdle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Animations/BlueIdle.anim -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dab5a676d5f40769c31f7b60a08176b 3 | timeCreated: 1677923861 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Actions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab15879b4fb54c119290d38366d23352 3 | timeCreated: 1678113017 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Actions/CreateItemAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45e65d141b5748ea8d3a92eeb1049dda 3 | timeCreated: 1678117428 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Actions/EatAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbaef597529a4f45ba0af781408e7ebd 3 | timeCreated: 1679418704 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Actions/GatherItemAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b5d8dd87522428497abc2437b6597e0 3 | timeCreated: 1679226022 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Actions/HaulItemAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06dc09414792430e804786f28e3fbd39 3 | timeCreated: 1679417488 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Actions/PickupItemAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b4db12bbd924895bdd3e463c9213204 3 | timeCreated: 1678112657 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Actions/WanderAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88a66c4863f842c89f7c4b9e2c297a5a 3 | timeCreated: 1699963413 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7dd240c905141fdb3ef4bf109ea5736 3 | timeCreated: 1677924625 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours/AgentMoveBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4cc28d1736b4221ab8a474b7fd461b2 3 | timeCreated: 1699963292 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours/AgentSpawnBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e35fcdb3a0414c73814658b8d7c95e50 3 | timeCreated: 1678985834 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours/AnimationBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc4e0676b83340d8a5137d980f454132 3 | timeCreated: 1699963292 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours/ComplexAgentBrain.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcc4406be94948eb806288662d729a49 3 | timeCreated: 1678988046 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours/ComplexTextBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4f9c9673b824324a8b19efe46ce4b91 3 | timeCreated: 1718878793 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours/ComplexTreeBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73c56d2d74f74761af2d6f26f74f3d32 3 | timeCreated: 1679508305 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours/InstanceHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6685cea7cea4893a3fdce5f418d5d9d 3 | timeCreated: 1680882778 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours/ItemBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24d6e47ea24746aebe2ff989ccc1c0aa 3 | timeCreated: 1679226830 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours/ItemCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53e8c2048eb2477f8635a00d5b6ccb5d 3 | timeCreated: 1679226962 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours/ItemFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 661c465e17de4952ad27f8a2fcab5054 3 | timeCreated: 1680807914 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Behaviours/ItemSourceBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20213453018d41568f0f824d5a4e60f3 3 | timeCreated: 1679419841 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 802b13ce988c45c8a2b31cc44d702218 3 | timeCreated: 1678106938 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Items.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c8759392c694aee80681b9141aff03c 3 | timeCreated: 1678117120 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Items/Apple.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3743fb5bff684a95b2c9441788a131e7 3 | timeCreated: 1679418823 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Items/Axe.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fdc133073f747748d8388f261542402 3 | timeCreated: 1678117150 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Items/Iron.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e41be8c6d88b44bdbfac39839d592547 3 | timeCreated: 1678117120 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Items/Pickaxe.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eafd4b97d83841b7bf773698140f38ee 3 | timeCreated: 1678117135 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Items/Wood.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce723d6464c1433a90c4c9d5ebf58858 3 | timeCreated: 1678117139 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/SetIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/SetIds.cs -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/SetIds.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ab7965f816c4bdd84ca956eba0834f7 3 | timeCreated: 1680861404 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Sources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8fe6037279046209de3c8bbb26f9f3d 3 | timeCreated: 1679419914 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Sources/AnvilSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2ed64ea8c1a4534afcccce1f54108d9 3 | timeCreated: 1680790595 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Sources/AppleSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2444d2358c024a6baed0de3bc255337e 3 | timeCreated: 1718881291 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Sources/BoxSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08d8708ebfff492287bec1ddeb525f84 3 | timeCreated: 1680790749 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Sources/IronMineSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7910dd591fdc4e8aa911278653f8e23a 3 | timeCreated: 1679419940 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Sources/WoodSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d9326c2b94948289b29af41fee86262 3 | timeCreated: 1679419914 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Classes/Targets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e165236e767c4bf8b0bd4e70d8801f52 3 | timeCreated: 1678106938 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Compatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Compatibility.cs -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Compatibility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84a912f610a34847ba82ba0e8fcb60bc 3 | timeCreated: 1720442965 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Extensions.cs -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c589802b2dd4131bee0078bf08545b7 3 | timeCreated: 1699963192 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Factories.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 407a383900e646dcb064b90b25660d43 3 | timeCreated: 1679426857 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Factories/Capabilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95cb75966fdb43018adf76bd2bfbf2de 3 | timeCreated: 1718872951 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Factories/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad1c70a588664c14a546cdb17458b633 3 | timeCreated: 1680862061 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/GOAP.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Complex/GOAP.asset -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/GOAP.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Complex/GOAP.asset.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Goals.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243581831ce0448b8557763c294ac4fa 3 | timeCreated: 1678112657 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Goals/CleanItemsGoal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1aa43e98712347c59fdcead472dc5887 3 | timeCreated: 1679417570 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Goals/CreateItemGoal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30df39e9cd7b4a56a7be1f6125e96c39 3 | timeCreated: 1678113033 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Goals/FixHungerGoal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a9d8a3a7a3b4854882077c309ef6b31 3 | timeCreated: 1699963299 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Goals/GatherItemGoal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ccc7e3b54784ed88ea9a583490da22e 3 | timeCreated: 1680860154 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Goals/PickupItemGoal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4015e5de1b7046db88fe0c1a3160b89a 3 | timeCreated: 1680879990 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Goals/WanderGoal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bc956af8efe4a239b18c44511bf9d4f 3 | timeCreated: 1699963299 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Goap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edb07c72dd384e82a7f03be538d538bc 3 | timeCreated: 1680807306 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Goap/GoapConfigInitializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5febc650b50f43f8bec45c1162612ee9 3 | timeCreated: 1680807307 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Goap/ItemTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d80a5cd3be3f44188a8eb4e77fe89f59 3 | timeCreated: 1719593454 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0fdf5a6e7494792ab61a5f36dd0a329 3 | timeCreated: 1678114923 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Interfaces/ICreatable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a7cce3150a8452e8a1f9069f8e0eec8 3 | timeCreated: 1678117199 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Interfaces/IEatable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddce8216b2c746f9b35d01ea1b9e0e46 3 | timeCreated: 1679418717 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Interfaces/IGatherable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f317a078ebf4e1ba48765eff54cbd08 3 | timeCreated: 1679419521 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Interfaces/IHoldable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86cd0dcafcd24b419349223b61a40b5f 3 | timeCreated: 1678112678 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Interfaces/IInjectable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8e995ea6c834dd4961a4a93d4c79638 3 | timeCreated: 1680809308 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Interfaces/ISource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8a001e40bbc46008c0f95140fda1ae8 3 | timeCreated: 1679419861 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Prefabs.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Scenes.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Sensors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef29bcd794574a25aef4fe10b9eec251 3 | timeCreated: 1679226325 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Sensors/Multi.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d360d904c1834f9c9bf72cf2c2b5e469 3 | timeCreated: 1730975891 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Sensors/Multi/ItemSensors.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a4a0a2524ae44609cd761aeab66947f 3 | timeCreated: 1730975891 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Sensors/Target.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb144fb9fa81434abc1664f74a21cfb4 3 | timeCreated: 1679227752 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Sensors/Target/HaulTargetSensor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c01da4add354163baab27cd515784db 3 | timeCreated: 1719593813 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Sensors/Target/TransformSensor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efe1481560f84e98979d6b8bd7cddebb 3 | timeCreated: 1699963304 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Sensors/World.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d4d1e103fde4a08b059a83eab6ae880 3 | timeCreated: 1679226325 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Sensors/World/HungerSensor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ee71a871bb546f0b89be90f1231b6ae 3 | timeCreated: 1719998989 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Sensors/World/IsHoldingSensor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68f4e7dbd3ec47cea834fb0427818eca 3 | timeCreated: 1679226325 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Sensors/World/IsInWorldSensor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a154c090f6c843f8bf619a2cb4a3e59f 3 | timeCreated: 1679513281 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Sensors/World/ItemOnFloorSensor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09192a3647de4d0d885afcef9db1226a 3 | timeCreated: 1679418348 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Targets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07421524a5314dbda9bc0e969cb1beb2 3 | timeCreated: 1684222975 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Targets/ClosestSourceTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d36b45e17298445db594a95cebff7cf4 3 | timeCreated: 1684230042 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Targets/ClosestTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41d8d447939b4b3880a06b85a17700ba 3 | timeCreated: 1684230042 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Targets/HaulTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f4d508227304e2081965507d3449718 3 | timeCreated: 1719593553 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Targets/TransformTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0da13e45aabb485abd701366d1c435e9 3 | timeCreated: 1684230042 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/Targets/WanderTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1df5807dbc1d48debfa78c30c7bf43d2 3 | timeCreated: 1684225875 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/WorldKeys.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8ab7e6de84b486494d2c4809c580bb5 3 | timeCreated: 1684222988 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/WorldKeys/CreatedItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eddec89d42054a56899662b449142d5b 3 | timeCreated: 1684225349 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/WorldKeys/IsHolding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae8aee61d1e849e7bf1fbf688414be5e 3 | timeCreated: 1684230076 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/WorldKeys/IsInWorld.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c7aee9324d741e08e2a542f8c860a37 3 | timeCreated: 1684230076 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/WorldKeys/IsWandering.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d571e3f276e24eea99835963fb128945 3 | timeCreated: 1684230076 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Complex/WorldKeys/ItemsOnFloor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6749bf20b12142dd87d7fc32aba0b39c 3 | timeCreated: 1684230076 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a2ed8dfa26b41f5a32865023ec920e4 3 | timeCreated: 1679513625 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Editor/ItemBaseEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Editor/ItemBaseEditor.cs -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Editor/ItemBaseEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9deb7750cc144670b93a9d470044cf86 3 | timeCreated: 1680878897 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Editor/ItemCollectionEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 489767bf1fc4446590ef5bdd6415b3d9 3 | timeCreated: 1679513664 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Shared.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70c9d751c83f4ab892bb37c86396d662 3 | timeCreated: 1677924542 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Shared/Actions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81897f64209a4555804d594fce97b422 3 | timeCreated: 1678364192 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Shared/Behaviours.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 719b5ae29dde4d14989493507e791976 3 | timeCreated: 1678985623 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Shared/Behaviours/AnimationBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47d5acea868b4d138d9ac85215196196 3 | timeCreated: 1677846719 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Shared/Goals.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe6a09ea87a44150bad87baecefd3b3c 3 | timeCreated: 1677924553 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Shared/Sensors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d547003857194c0f87b9e2b6ac52aa6c 3 | timeCreated: 1679226564 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Shared/Sensors/Target.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc818370f23b4791841c75d055c199b3 3 | timeCreated: 1679226564 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5b9289afc9f4c5d838146b09cac99e6 3 | timeCreated: 1677923496 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Behaviours.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Behaviours.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Behaviours/AnimationBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcb58ee236b2d33479ab5861e21f17a8 3 | timeCreated: 1677846719 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Behaviours/AppleCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98921267ac58432baa349e0fcca3f9f1 3 | timeCreated: 1677871067 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Behaviours/SettingsBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 621f6a51b37e4db1a32fe0bcdf7ff944 3 | timeCreated: 1677861175 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Compatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Compatibility.cs -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Configs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Configs.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Configs/Goals.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Configs/Goals.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Configs/Sets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Configs/Sets.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Extensions.cs -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87ad055dbbfd4eaeaa5f24c66abdc70f 3 | timeCreated: 1699962965 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Goap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbcf8044ac454b498ea50cd9ccf7c75a 3 | timeCreated: 1699963972 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Goap/Actions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Goap/Actions.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Goap/Factories.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ead3634c4b34a26950a921a0453953e 3 | timeCreated: 1718826748 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Goap/GOAP.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Goap/GOAP.asset -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Goap/Goals.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Goap/Goals.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Goap/Sensors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Goap/Sensors.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Goap/Sensors/Multi/AppleSensor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 826fcc4a2f944ecc93d04cf058a3ca82 3 | timeCreated: 1700081967 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Materials.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Prefabs.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Simple/Scenes.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Sprites.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Sprites/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Sprites/Materials.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Sprites/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Sprites/sheet.png -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/Sprites/sheet.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/Sprites/sheet.png.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Actions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 550f9154d25f482fa9934dd1710013cf 3 | timeCreated: 1688378634 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Actions/TurnWanderAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5beb29ff982547d9ac5932e346f644fb 3 | timeCreated: 1688378634 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Behaviours.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0a062b40f584e45862b955359446f82 3 | timeCreated: 1688375803 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Behaviours/GameBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18cb43c7b9834befa876e5ca760b974f 3 | timeCreated: 1688387070 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Behaviours/GridMoveBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a036d4c62979460ebe1d652029117fbd 3 | timeCreated: 1688547827 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Behaviours/InjectBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a227a37d8b74a159de07af6adcf4cf3 3 | timeCreated: 1688387443 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Behaviours/TestBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c16674a94ab4e208c0e50e9eaf9945e 3 | timeCreated: 1688376636 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Behaviours/TileBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 928f275f0c7d487abdd1a375d55c4b00 3 | timeCreated: 1688375519 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Behaviours/TurnBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b49297aa82e4409894be5d6e1c1237f4 3 | timeCreated: 1688387001 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Extensions.cs -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Factories.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c06b9b0cf864667bc828796ee806f2b 3 | timeCreated: 1688378563 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Factories/TurnGoapSetFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bade2b7fd12449da879f559366fa0f5 3 | timeCreated: 1688378563 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/GOAP.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/GOAP.asset -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/GOAP.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/GOAP.asset.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Goals.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Goals.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69af651ec1c04705becfe9fa84e4c1c8 3 | timeCreated: 1688375807 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Interfaces/IGrid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e268d7ccefb24bc1a83b9b6a7c19f2ae 3 | timeCreated: 1688375837 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Interfaces/IInjectable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4244d969d033403d9dd1b46e3cc82722 3 | timeCreated: 1688387426 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Interfaces/IPathfinding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb45c7cdaa4945fbb1c0f9072608fdfd 3 | timeCreated: 1688376548 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Interfaces/ITile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 359c53cc5dd74ecd9a697c347f2234f9 3 | timeCreated: 1688375519 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Prefabs.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Sensors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5955fe1df0174ac39bb7e7e762e8e58b 3 | timeCreated: 1688387361 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/Sensors/Target.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22388ccfc042479882785e108119536b 3 | timeCreated: 1688387361 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/TargetKeys.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/TargetKeys.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/TileTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/TileTarget.cs -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/TileTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32e7bf8e901e46dd91fa7fa9009ec0a6 3 | timeCreated: 1688387587 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/TurnAgentBrain.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c2b7ad340c1437887ceaaf7a3de61bd 3 | timeCreated: 1688546481 -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/TurnBased.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/TurnBased.unity -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/WorldKeys.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/Demos/TurnBased/WorldKeys.meta -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/README.pdf -------------------------------------------------------------------------------- /Demo/Assets/CrashKonijn/GOAP/README.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/CrashKonijn/GOAP/README.pdf.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Actions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Actions.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Actions/EatAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Actions/EatAction.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Actions/EatAction.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Actions/EatAction.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Actions/IdleAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Actions/IdleAction.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Actions/IdleAction.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Actions/IdleAction.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Actions/PickupPearAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Actions/PickupPearAction.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/AgentTypes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/AgentTypes.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Behaviours.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfc9a65c4a6b46fc97a9cb87b2beb7c8 3 | timeCreated: 1726660129 -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Behaviours/AgentMoveBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c727a9b16504e569f1bc74579ba081b 3 | timeCreated: 1726660165 -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Behaviours/BrainBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Behaviours/BrainBehaviour.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Behaviours/BrainBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da6c20f37a604270a4d0fa04d85becdd 3 | timeCreated: 1726661157 -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Behaviours/DataBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Behaviours/DataBehaviour.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Behaviours/PearBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Behaviours/PearBehaviour.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Capabilities.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Capabilities.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Capabilities/EatCapabilityFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8651ade0d3dd4a1baa5368db3d11c3d3 3 | timeCreated: 1726744395 -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Capabilities/PearCapability.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ccb0bf74fe34369b7c1abbcc4eb0983 3 | timeCreated: 1726740962 -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/GettingStarted.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/GettingStarted.unity -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/GettingStarted.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/GettingStarted.unity.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Goals.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Goals.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Goals/EatGoal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Goals/EatGoal.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Goals/EatGoal.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Goals/EatGoal.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Goals/IdleGoal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Goals/IdleGoal.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Goals/IdleGoal.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Goals/IdleGoal.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Goals/PickupPearGoal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Goals/PickupPearGoal.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Goals/PickupPearGoal.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Goals/PickupPearGoal.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/PearMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/PearMaterial.mat -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/PearMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/PearMaterial.mat.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Prefabs.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Prefabs/Pear.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Prefabs/Pear.prefab -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Prefabs/Pear.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Prefabs/Pear.prefab.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Sensors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Sensors.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Sensors/IdleTargetSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Sensors/IdleTargetSensor.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Sensors/PearSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Sensors/PearSensor.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/Sensors/PearSensor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/Sensors/PearSensor.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/TargetKeys.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/TargetKeys.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/TargetKeys/ClosestPear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/TargetKeys/ClosestPear.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/TargetKeys/IdleTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/TargetKeys/IdleTarget.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/WorldKeys.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/WorldKeys.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/WorldKeys/Hunger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/WorldKeys/Hunger.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/WorldKeys/Hunger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/WorldKeys/Hunger.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/WorldKeys/IsIdle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/WorldKeys/IsIdle.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/WorldKeys/IsIdle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/WorldKeys/IsIdle.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/WorldKeys/PearCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/WorldKeys/PearCount.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/GettingStarted/WorldKeys/PearCount.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/GettingStarted/WorldKeys/PearCount.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/Snippets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/Snippets.meta -------------------------------------------------------------------------------- /Demo/Assets/Docs/Snippets/GettingStarted.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d46c87cf0664eb585574dff74bd7182 3 | timeCreated: 1726663791 -------------------------------------------------------------------------------- /Demo/Assets/Docs/Snippets/GettingStarted/01_IdleAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Docs/Snippets/GettingStarted/01_IdleAction.cs -------------------------------------------------------------------------------- /Demo/Assets/Docs/Snippets/GettingStarted/01_IdleAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85b7caf77329496a840f68f950ca42a0 3 | timeCreated: 1726663791 -------------------------------------------------------------------------------- /Demo/Assets/EmptyScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/EmptyScene.unity -------------------------------------------------------------------------------- /Demo/Assets/EmptyScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/EmptyScene.unity.meta -------------------------------------------------------------------------------- /Demo/Assets/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Tests.meta -------------------------------------------------------------------------------- /Demo/Assets/Tests/PlayMode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Tests/PlayMode.meta -------------------------------------------------------------------------------- /Demo/Assets/Tests/PlayMode/ComplexSceneTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Tests/PlayMode/ComplexSceneTests.cs -------------------------------------------------------------------------------- /Demo/Assets/Tests/PlayMode/ComplexSceneTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 401c71f0d4d34af6b79da3b690dedd05 3 | timeCreated: 1681724321 -------------------------------------------------------------------------------- /Demo/Assets/Tests/PlayMode/PlayModeTests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Tests/PlayMode/PlayModeTests.asmdef -------------------------------------------------------------------------------- /Demo/Assets/Tests/PlayMode/PlayModeTests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Tests/PlayMode/PlayModeTests.asmdef.meta -------------------------------------------------------------------------------- /Demo/Assets/Tests/PlayMode/SimpleSceneTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Tests/PlayMode/SimpleSceneTests.cs -------------------------------------------------------------------------------- /Demo/Assets/Tests/PlayMode/SimpleSceneTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/Tests/PlayMode/SimpleSceneTests.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Demo/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /Demo/CrashKonijn.Agent.Core.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/CrashKonijn.Agent.Core.csproj.DotSettings -------------------------------------------------------------------------------- /Demo/CrashKonijn.Agent.Runtime.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/CrashKonijn.Agent.Runtime.csproj.DotSettings -------------------------------------------------------------------------------- /Demo/CrashKonijn.Goap.Core.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/CrashKonijn.Goap.Core.csproj.DotSettings -------------------------------------------------------------------------------- /Demo/CrashKonijn.Goap.Editor.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/CrashKonijn.Goap.Editor.csproj.DotSettings -------------------------------------------------------------------------------- /Demo/CrashKonijn.Goap.Resolver.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/CrashKonijn.Goap.Resolver.csproj.DotSettings -------------------------------------------------------------------------------- /Demo/CrashKonijn.Goap.Runtime.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/CrashKonijn.Goap.Runtime.csproj.DotSettings -------------------------------------------------------------------------------- /Demo/CrashKonijn.Goap.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/CrashKonijn.Goap.csproj.DotSettings -------------------------------------------------------------------------------- /Demo/Demo.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Demo.sln.DotSettings -------------------------------------------------------------------------------- /Demo/LamosInteractive.Goap.Unity.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/LamosInteractive.Goap.Unity.csproj.DotSettings -------------------------------------------------------------------------------- /Demo/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Packages/manifest.json -------------------------------------------------------------------------------- /Demo/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/Packages/packages-lock.json -------------------------------------------------------------------------------- /Demo/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/BurstAotSettings_Android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/BurstAotSettings_Android.json -------------------------------------------------------------------------------- /Demo/ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /Demo/ProjectSettings/BurstAotSettings_WebGL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/BurstAotSettings_WebGL.json -------------------------------------------------------------------------------- /Demo/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /Demo/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Demo/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/RiderScriptEditorPersistedState.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/RiderScriptEditorPersistedState.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /Demo/ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/TimelineSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Demo/UIElementsSchema/GlobalNamespace.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/GlobalNamespace.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/UIElements.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/UIElements.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/Unity.Cloud.Collaborate.Components.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/Unity.Cloud.Collaborate.Components.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/Unity.Cloud.Collaborate.Views.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/Unity.Cloud.Collaborate.Views.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/Unity.Profiling.Editor.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/Unity.Profiling.Editor.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/Unity.UI.Builder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/Unity.UI.Builder.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/UnityEditor.Overlays.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/UnityEditor.Overlays.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/UnityEditor.Rendering.LookDev.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/UnityEditor.Rendering.LookDev.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/UnityEditor.Search.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/UnityEditor.Search.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/UnityEditor.ShaderGraph.Drawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/UnityEditor.ShaderGraph.Drawing.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/UnityEditor.ShortcutManagement.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/UnityEditor.ShortcutManagement.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/UnityEditor.UIElements.Debugger.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/UnityEditor.UIElements.Debugger.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/UnityEditor.UIElements.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/UnityEditor.UIElements.xsd -------------------------------------------------------------------------------- /Demo/UIElementsSchema/UnityEngine.UIElements.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UIElementsSchema/UnityEngine.UIElements.xsd -------------------------------------------------------------------------------- /Demo/UnityGoap.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/UnityGoap.sln.DotSettings -------------------------------------------------------------------------------- /Demo/com.crashkonijn.goap.demos.complex.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/com.crashkonijn.goap.demos.complex.csproj.DotSettings -------------------------------------------------------------------------------- /Demo/com.crashkonijn.goap.demos.simple.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Demo/com.crashkonijn.goap.demos.simple.csproj.DotSettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/LICENSE -------------------------------------------------------------------------------- /Package/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2af2dbeb331b4822aa6307442c076b03 3 | timeCreated: 1677691391 -------------------------------------------------------------------------------- /Package/Documentation/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/.idea/.gitignore -------------------------------------------------------------------------------- /Package/Documentation/.idea/Documentation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/.idea/Documentation.iml -------------------------------------------------------------------------------- /Package/Documentation/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/.idea/modules.xml -------------------------------------------------------------------------------- /Package/Documentation/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/.idea/vcs.xml -------------------------------------------------------------------------------- /Package/Documentation/Classes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Classes.meta -------------------------------------------------------------------------------- /Package/Documentation/Classes/Actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Classes/Actions.md -------------------------------------------------------------------------------- /Package/Documentation/Classes/Actions.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b50e0afe8fe4c8f9856ccdba8d653c2 3 | timeCreated: 1677691475 -------------------------------------------------------------------------------- /Package/Documentation/Classes/AgentBehaviourAndActionProvider.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59bfeffadee845c99a008d40f989d317 3 | timeCreated: 1677691446 -------------------------------------------------------------------------------- /Package/Documentation/Classes/Goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Classes/Goals.md -------------------------------------------------------------------------------- /Package/Documentation/Classes/Goals.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b955d78507764f9a8517fa5cecb4db02 3 | timeCreated: 1677691485 -------------------------------------------------------------------------------- /Package/Documentation/Classes/README.md: -------------------------------------------------------------------------------- 1 | # Classes 2 | 3 | -------------------------------------------------------------------------------- /Package/Documentation/Classes/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Classes/README.md.meta -------------------------------------------------------------------------------- /Package/Documentation/Classes/Sensors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Classes/Sensors.md -------------------------------------------------------------------------------- /Package/Documentation/Classes/Sensors.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dc93c825fe641bfa8e658b106c36c02 3 | timeCreated: 1677691598 -------------------------------------------------------------------------------- /Package/Documentation/Classes/TargetKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Classes/TargetKeys.md -------------------------------------------------------------------------------- /Package/Documentation/Classes/TargetKeys.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c079ee226b6441b1b9e45722da1ce820 3 | timeCreated: 1677691648 -------------------------------------------------------------------------------- /Package/Documentation/Classes/WorldKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Classes/WorldKeys.md -------------------------------------------------------------------------------- /Package/Documentation/Classes/WorldKeys.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3535ff2a6a542c6ba90a063e6ba5cce 3 | timeCreated: 1677691638 -------------------------------------------------------------------------------- /Package/Documentation/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Config.meta -------------------------------------------------------------------------------- /Package/Documentation/Config/Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Config/Code.md -------------------------------------------------------------------------------- /Package/Documentation/Config/Code.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76538cd191cf40039b53fa833b7ecbe2 3 | timeCreated: 1681219765 -------------------------------------------------------------------------------- /Package/Documentation/Config/README.md: -------------------------------------------------------------------------------- 1 | # Config 2 | 3 | -------------------------------------------------------------------------------- /Package/Documentation/Config/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Config/README.md.meta -------------------------------------------------------------------------------- /Package/Documentation/Config/ScriptableObjects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Config/ScriptableObjects.md -------------------------------------------------------------------------------- /Package/Documentation/Config/ScriptableObjects.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35a7684833f74da1b56f301cf17983a5 3 | timeCreated: 1681219746 -------------------------------------------------------------------------------- /Package/Documentation/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19c850406d1146ce9fd40792d2df0eb8 3 | timeCreated: 1681283389 -------------------------------------------------------------------------------- /Package/Documentation/Examples/Complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Examples/Complex.md -------------------------------------------------------------------------------- /Package/Documentation/Examples/Complex.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eef782fa2d62496e857a64c6077991a0 3 | timeCreated: 1681283396 -------------------------------------------------------------------------------- /Package/Documentation/Examples/README.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | 3 | -------------------------------------------------------------------------------- /Package/Documentation/Examples/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Examples/README.md.meta -------------------------------------------------------------------------------- /Package/Documentation/Examples/Simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Examples/Simple.md -------------------------------------------------------------------------------- /Package/Documentation/Examples/Simple.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 130255e8f4784a4289a306235a113fb3 3 | timeCreated: 1681283437 -------------------------------------------------------------------------------- /Package/Documentation/General.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d03da097ff164694a234b886aea486da 3 | timeCreated: 1681283585 -------------------------------------------------------------------------------- /Package/Documentation/General/AgentTypeAndCapabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/AgentTypeAndCapabilities.md -------------------------------------------------------------------------------- /Package/Documentation/General/ConditionsAndEffects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/ConditionsAndEffects.md -------------------------------------------------------------------------------- /Package/Documentation/General/ConditionsAndEffects.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2970e2b7c6db4a0eb50778553fdc95bf 3 | timeCreated: 1681318611 -------------------------------------------------------------------------------- /Package/Documentation/General/Controllers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/Controllers.md -------------------------------------------------------------------------------- /Package/Documentation/General/Controllers.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/Controllers.md.meta -------------------------------------------------------------------------------- /Package/Documentation/General/Generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/Generator.md -------------------------------------------------------------------------------- /Package/Documentation/General/Generator.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/Generator.md.meta -------------------------------------------------------------------------------- /Package/Documentation/General/GraphViewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/GraphViewer.md -------------------------------------------------------------------------------- /Package/Documentation/General/GraphViewer.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/GraphViewer.md.meta -------------------------------------------------------------------------------- /Package/Documentation/General/Injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/Injection.md -------------------------------------------------------------------------------- /Package/Documentation/General/Injection.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b45fc55deb0479f9404cd79baf75ac2 3 | timeCreated: 1681283602 -------------------------------------------------------------------------------- /Package/Documentation/General/LifeCycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/LifeCycle.md -------------------------------------------------------------------------------- /Package/Documentation/General/LifeCycle.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c65d838dca14d8eb80d31c1b874541c 3 | timeCreated: 1681904075 -------------------------------------------------------------------------------- /Package/Documentation/General/README.md: -------------------------------------------------------------------------------- 1 | # General 2 | 3 | -------------------------------------------------------------------------------- /Package/Documentation/General/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/README.md.meta -------------------------------------------------------------------------------- /Package/Documentation/General/WorldState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/WorldState.md -------------------------------------------------------------------------------- /Package/Documentation/General/WorldState.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/General/WorldState.md.meta -------------------------------------------------------------------------------- /Package/Documentation/Introduction.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b433d3a54b894503a3c9ed6685deae93 3 | timeCreated: 1681221132 -------------------------------------------------------------------------------- /Package/Documentation/Introduction/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Introduction/FAQ.md -------------------------------------------------------------------------------- /Package/Documentation/Introduction/FAQ.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36c011176b1e4afb8fd2b7ac7513dcc0 3 | timeCreated: 1681890347 -------------------------------------------------------------------------------- /Package/Documentation/Introduction/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Introduction/GettingStarted.md -------------------------------------------------------------------------------- /Package/Documentation/Introduction/GettingStarted.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08d4db4988a74e258f9260093a340816 3 | timeCreated: 1681219789 -------------------------------------------------------------------------------- /Package/Documentation/Introduction/Pears.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Introduction/Pears.md -------------------------------------------------------------------------------- /Package/Documentation/Introduction/Pears.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Introduction/Pears.md.meta -------------------------------------------------------------------------------- /Package/Documentation/Introduction/Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Introduction/Setup.md -------------------------------------------------------------------------------- /Package/Documentation/Introduction/Setup.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Introduction/Setup.md.meta -------------------------------------------------------------------------------- /Package/Documentation/Introduction/Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Introduction/Theory.md -------------------------------------------------------------------------------- /Package/Documentation/Introduction/Theory.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/Introduction/Theory.md.meta -------------------------------------------------------------------------------- /Package/Documentation/README.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | -------------------------------------------------------------------------------- /Package/Documentation/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/README.md.meta -------------------------------------------------------------------------------- /Package/Documentation/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/SUMMARY.md -------------------------------------------------------------------------------- /Package/Documentation/SUMMARY.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d6a0dbfe8e24374b6b9e8ec7752964e 3 | timeCreated: 1681221014 -------------------------------------------------------------------------------- /Package/Documentation/images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images.meta -------------------------------------------------------------------------------- /Package/Documentation/images/2k_agents_short.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/2k_agents_short.gif -------------------------------------------------------------------------------- /Package/Documentation/images/2k_agents_short.gif.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49f73a5996a34fabb7832e62c46c425e 3 | timeCreated: 1681388531 -------------------------------------------------------------------------------- /Package/Documentation/images/class_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/class_overview.png -------------------------------------------------------------------------------- /Package/Documentation/images/class_overview.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/class_overview.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/demo_complex_miner_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/demo_complex_miner_graph.png -------------------------------------------------------------------------------- /Package/Documentation/images/demo_complex_smith_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/demo_complex_smith_graph.png -------------------------------------------------------------------------------- /Package/Documentation/images/demo_simple_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/demo_simple_graph.png -------------------------------------------------------------------------------- /Package/Documentation/images/demo_simple_graph.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/demo_simple_graph.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/generator_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/generator_folder.png -------------------------------------------------------------------------------- /Package/Documentation/images/generator_folder.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/generator_folder.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/generator_scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/generator_scriptable.png -------------------------------------------------------------------------------- /Package/Documentation/images/generator_scriptable.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/generator_scriptable.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/getting_started.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/getting_started.meta -------------------------------------------------------------------------------- /Package/Documentation/images/getting_started_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/getting_started_agent.png -------------------------------------------------------------------------------- /Package/Documentation/images/goap-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/goap-set.png -------------------------------------------------------------------------------- /Package/Documentation/images/goap-set.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/goap-set.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/goap-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/goap-viewer.png -------------------------------------------------------------------------------- /Package/Documentation/images/goap-viewer.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/goap-viewer.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/goap_config_initializer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/goap_config_initializer.png -------------------------------------------------------------------------------- /Package/Documentation/images/lifecycle_agent_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/lifecycle_agent_run.png -------------------------------------------------------------------------------- /Package/Documentation/images/lifecycle_agent_run.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/lifecycle_agent_run.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/lifecycle_agent_set_goal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/lifecycle_agent_set_goal.png -------------------------------------------------------------------------------- /Package/Documentation/images/lifecycle_goap_runner_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/lifecycle_goap_runner_run.png -------------------------------------------------------------------------------- /Package/Documentation/images/scriptable_configs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/scriptable_configs.png -------------------------------------------------------------------------------- /Package/Documentation/images/scriptable_configs.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/scriptable_configs.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/scripts_goap_behaviour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/scripts_goap_behaviour.png -------------------------------------------------------------------------------- /Package/Documentation/images/sensor_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/sensor_flow.png -------------------------------------------------------------------------------- /Package/Documentation/images/sensor_flow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/sensor_flow.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/v3_action_props.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/v3_action_props.png -------------------------------------------------------------------------------- /Package/Documentation/images/v3_action_props.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/v3_action_props.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/v3_capability_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/v3_capability_config.png -------------------------------------------------------------------------------- /Package/Documentation/images/v3_capability_config.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/v3_capability_config.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/v3_capability_inspector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/v3_capability_inspector.gif -------------------------------------------------------------------------------- /Package/Documentation/images/v3_folder_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/v3_folder_structure.png -------------------------------------------------------------------------------- /Package/Documentation/images/v3_folder_structure.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/v3_folder_structure.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/v3_generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/v3_generator.png -------------------------------------------------------------------------------- /Package/Documentation/images/v3_generator.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/v3_generator.png.meta -------------------------------------------------------------------------------- /Package/Documentation/images/v3_graph_viewer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/v3_graph_viewer.gif -------------------------------------------------------------------------------- /Package/Documentation/images/v3_graph_viewer.gif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/images/v3_graph_viewer.gif.meta -------------------------------------------------------------------------------- /Package/Documentation/upgrade.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/upgrade.meta -------------------------------------------------------------------------------- /Package/Documentation/upgrade/core-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/upgrade/core-concepts.md -------------------------------------------------------------------------------- /Package/Documentation/upgrade/core-concepts.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/upgrade/core-concepts.md.meta -------------------------------------------------------------------------------- /Package/Documentation/upgrade/upgrade-guide-2.0-2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/upgrade/upgrade-guide-2.0-2.1.md -------------------------------------------------------------------------------- /Package/Documentation/upgrade/upgrade-guide-2.0-2.1.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9f71508e800419aaabb0d9c0f7fbdab 3 | timeCreated: 1684230647 -------------------------------------------------------------------------------- /Package/Documentation/upgrade/upgrade-guide-2.1-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/upgrade/upgrade-guide-2.1-3.0.md -------------------------------------------------------------------------------- /Package/Documentation/upgrading.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/upgrading.meta -------------------------------------------------------------------------------- /Package/Documentation/upgrading/README.md: -------------------------------------------------------------------------------- 1 | # Upgrading 2 | 3 | -------------------------------------------------------------------------------- /Package/Documentation/upgrading/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Documentation/upgrading/README.md.meta -------------------------------------------------------------------------------- /Package/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor.meta -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor.meta -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/About.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/About.meta -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 628c7ca3ce10462080411c2f29460d24 3 | timeCreated: 1669913569 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Attributes/ActionClassDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cac2d0d835ff4598a60b70472bb69577 3 | timeCreated: 1677936638 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Attributes/ButtonAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ca44d5e65e4422d92d79000dbec0687 3 | timeCreated: 1718717931 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Attributes/ClassDrawerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f37405fddadd42149c8284289ffa2089 3 | timeCreated: 1669924165 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Attributes/GoalClassDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fabb488aad1b4ad7bf524f713d494943 3 | timeCreated: 1669913569 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Attributes/TargetSensorDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97c6181bcd5c4ce692e171635d378489 3 | timeCreated: 1669924316 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Attributes/WorldSensorDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ced011c7da7b4f4c96b6c757c63bd234 3 | timeCreated: 1669924340 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Classes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/Classes.meta -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Classes/Mappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/Classes/Mappers.cs -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Classes/Mappers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ea85d500b5d47ee85c9523e97503520 3 | timeCreated: 1677949683 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Classes/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f591d183ac1946f5b48ef1ae298a386f 3 | timeCreated: 1677949487 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Classes/Models/Graph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0ac2d937173449889782054ba6d89d2 3 | timeCreated: 1677949487 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Classes/Models/Node.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c04195f46e949b38f606eb86886a045 3 | timeCreated: 1677949487 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Classes/Models/NodeCondition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0487d8a5930c42eeb9c75c6835e556f4 3 | timeCreated: 1677949487 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Classes/Models/NodeEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67f71ed4daf24181b9fb5dc39871489b 3 | timeCreated: 1677949487 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Classes/Nodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/Classes/Nodes.cs -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Classes/Nodes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03e2bcde436b4f87bea98e2ec764596e 3 | timeCreated: 1681377840 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Classes/RenderNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58237cd12fb04158ada57064a6a9a4fc 3 | timeCreated: 1681377840 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Drawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6a5fd1f852f4034a0e9387705c07636 3 | timeCreated: 1677671560 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Drawers/AgentTypeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 143d530bd0534dd3805fb83c1af646a8 3 | timeCreated: 1684235662 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Drawers/BezierDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bcc19177fce4cfcb54dac2ebdb7f91a 3 | timeCreated: 1677667256 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Drawers/DragDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d88ab04124f435bb312902a49ced465 3 | timeCreated: 1677664208 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Drawers/LineDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85cf75ec7aae49d690670de1c1391476 3 | timeCreated: 1677607777 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Drawers/LogDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 919591cde19c4aea98d79db07814615e 3 | timeCreated: 1718702855 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Drawers/ObjectDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef4fa10e13834b9fb69efba814c87997 3 | timeCreated: 1677858441 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Drawers/WorldDataDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81b348713bf74f2b9a6a1e94f28e635e 3 | timeCreated: 1677855033 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71df4bdffa744091a3c81762f56606fa 3 | timeCreated: 1677683902 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/ActionList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 357b0793695e4c04994f028e9877aba4 3 | timeCreated: 1699981987 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/CapabilityGoalElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 096285a19d5d4b729c9c11b2533c5503 3 | timeCreated: 1700070986 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/Elements/Card.cs -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/Card.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b81163b89b87471baa8ba3b6661a9c8f 3 | timeCreated: 1677684346 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/Circle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/Elements/Circle.cs -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/Circle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0240b35fbc2e41aabf7863c4b615f78d 3 | timeCreated: 1700068422 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/ClassRefField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef68beb9c6d2408d9cd8ef1bc5f2d873 3 | timeCreated: 1700035335 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/ConditionList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54abe09b11d3426288ed11fce287cd97 3 | timeCreated: 1700065756 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/EffectList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ccce671d0264f5f886ae11f9b325115 3 | timeCreated: 1700068180 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/GoalList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16d2fa22c850478887aef4ac4e3f97bf 3 | timeCreated: 1700071077 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/Elements/Header.cs -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/Header.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 696d514efa7b470ea89c1e704e232b7c 3 | timeCreated: 1677683902 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/HorizontalSplitView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e86018e8520e4cf8a4f166cf9edc6e28 3 | timeCreated: 1718698444 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/LabeledField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd179a917ebb4ddf9c0360a4dae03fb7 3 | timeCreated: 1700034384 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/ListElementBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23302b9d2d0c4b9cba9109fd3d5ecfa1 3 | timeCreated: 1699981466 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Elements/SensorList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3845da0515644bbbaa4ac5f5ea93893 3 | timeCreated: 1700080362 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/Extensions.cs -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a92ffd413f314317acc53e52a0bf193e 3 | timeCreated: 1712300616 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/GoapEditorSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2942fd14d304fb7886a951082e25b9d 3 | timeCreated: 1684238495 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/GraphViewer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef1ba8cfab1040e6b0f26d533601aa5c 3 | timeCreated: 1712683504 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/GraphViewer/ConditionElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e8f656a20d840769929724a0dde32bf 3 | timeCreated: 1712683465 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/GraphViewer/ConnectionElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b579596134442708e41b66b6e9803b6 3 | timeCreated: 1712683465 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/GraphViewer/EditorWindowValues.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69551ca2cfa4482ea79e47988b7904ed 3 | timeCreated: 1712683465 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/GraphViewer/NodeElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0884da2127404057bc3dfe2c6dcd91ad 3 | timeCreated: 1712683465 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/GraphViewer/ToolbarElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fd14ff25f5942588f2f091cdc26120f 3 | timeCreated: 1712683465 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Styles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 932f4c54740a4013b0c1838baa12014c 3 | timeCreated: 1677672109 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Styles/About.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/Styles/About.uss -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Styles/About.uss.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca153d69c025475e912e31d991f874a2 3 | timeCreated: 1713115301 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Styles/Generic.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/Styles/Generic.uss -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Styles/Generic.uss.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4567cab6536f457eba19c2e3e91b68fe 3 | timeCreated: 1677672120 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Styles/GraphViewer.uss.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9aba8d59dfe2413ab030da538c1b05b4 3 | timeCreated: 1712258415 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/Textures.meta -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/TypeDrawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Editor/CrashKonijn.Goap.Editor/TypeDrawers.meta -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/TypeDrawers/AgentEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ebb36164aae4934b8669f7be7b9d35b 3 | timeCreated: 1677686964 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/TypeDrawers/GeneratorEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2cc6c47c10b4984aeb5d7d912fe1e56 3 | timeCreated: 1697131850 -------------------------------------------------------------------------------- /Package/Editor/CrashKonijn.Goap.Editor/TypeDrawers/GoapRunnerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f61c42148dd84a438284c379cf5eb9b2 3 | timeCreated: 1684232404 -------------------------------------------------------------------------------- /Package/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime.meta -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d502a88af65b46e18746f9c402f25c31 3 | timeCreated: 1719322542 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Core/Delegates.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Delegates.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24661624e67547afaa30967e722beca9 3 | timeCreated: 1719323643 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Enums.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8f39bff7f5e4e8d932a069b40e5860e 3 | timeCreated: 1719322720 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Enums/ActionMoveMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94dd4a0cddc747c28ad77dc5c1abe8a2 3 | timeCreated: 1681894226 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Enums/AgentMoveState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab847c4386e54d099adbe3ab0abd71d3 3 | timeCreated: 1684141914 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Enums/AgentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Core/Enums/AgentState.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Enums/AgentState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 588d1ed090bb4a53931ca27112b5cb45 3 | timeCreated: 1677618674 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Enums/DebugMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Core/Enums/DebugMode.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Enums/DebugMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97dc2871b2ab4e02b5ecc00bd96e482f 3 | timeCreated: 1718703456 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Enums/DebugSeverity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca41330bf49e49be8c0bd19961906c9a 3 | timeCreated: 1718711505 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Core/Extensions.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Core/Extensions.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 290d1e2fa3bc466ebd96cb08d956f85a 3 | timeCreated: 1719322725 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IActionContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f987e60fb79c40f89816312c77423ceb 3 | timeCreated: 1699621777 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IActionProperties.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba837d92d8554ca29d28abbfea41a641 3 | timeCreated: 1703186954 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IActionProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 448af65a23e5451da94763bfdfa49efe 3 | timeCreated: 1719578891 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IActionReceiver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 161a3b9e5bef4978afb6e62a9dc348cc 3 | timeCreated: 1719575680 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IActionRunState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 528bc758dba84fffb64910181673e4c7 3 | timeCreated: 1701198436 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IActionState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 769dec89a018491aae46e34de683f49e 3 | timeCreated: 1719316333 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IAgent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a640c2353c04f7fa48676d58a63b454 3 | timeCreated: 1681377175 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IAgentEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0550498ebd2e40dfa2337778a9016e95 3 | timeCreated: 1681377175 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IAgentTimers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccb5536fe4024ebca8213ff9e05abd93 3 | timeCreated: 1701112955 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IComponentReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6dc97b12f6d4fafb98a1b3c0a385c9d 3 | timeCreated: 1683292667 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/ILogger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70ae318a8e2c4697b35c25c7c8b29021 3 | timeCreated: 1718703456 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/ILoggerConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8095622bfb3409ab4c07cd142266dfb 3 | timeCreated: 1719403118 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IMonoAgent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3196fee4fcce429a8ad551d75b84f02a 3 | timeCreated: 1681377175 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/IMonoBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67dee66ef37542809d67326da119d3cb 3 | timeCreated: 1669141100 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/Interfaces/ITimer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44172d249c9e4262914b615962263c5a 3 | timeCreated: 1701112955 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Core/com.crashkonijn.agent.core.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d347051544a4880a72466503e27985a 3 | timeCreated: 1719322542 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime.meta -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/ActionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime/ActionBase.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/ActionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime/ActionContext.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/ActionContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f014145dfa004ba2b1f7d2d892399c79 3 | timeCreated: 1678363870 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/ActionProviderBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1d3add3cf004edd8d027f0e23033ea9 3 | timeCreated: 1719578877 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/ActionRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime/ActionRunner.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/ActionRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f23612b7fa843d59fdafb8335ff79d5 3 | timeCreated: 1701243787 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/ActionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime/ActionState.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/ActionState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da8aff49b242429581afdbf6becff25b 3 | timeCreated: 1719316557 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/AgentEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime/AgentEvents.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/AgentEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4cc07d51a08421a99dd69ad10220105 3 | timeCreated: 1681377175 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/AgentException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2c82b6556294483a2e41674c5ba5ed7 3 | timeCreated: 1719398676 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/AgentLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime/AgentLogger.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/AgentLogger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e7aa356bb89463abe41cecfb28514e9 3 | timeCreated: 1719403830 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/AgentTimers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime/AgentTimers.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/AgentTimers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51e4a6dc57d149dfbfd68d916b619c21 3 | timeCreated: 1701112955 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/Disablers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e444390a58940c3b1e2e6931cc7de17 3 | timeCreated: 1731489590 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/Disablers/ActionDisabler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 278a5df3910047df8819228b1bd19015 3 | timeCreated: 1731487385 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime/Extensions.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bea101279a04ba08c76a0d2197997ad 3 | timeCreated: 1719383754 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/LoggerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime/LoggerBase.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/LoggerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1262c6b2668840f881db7be1b6a8e7bb 3 | timeCreated: 1718696859 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/LoggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime/LoggerConfig.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/LoggerConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae2aaadbeac44f58a3f8d711411847ca 3 | timeCreated: 1719404046 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/References.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5893c4b8c9cd42b4ac291852a3464ebe 3 | timeCreated: 1680000626 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Agent.Runtime/Timer.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/Timer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7499c21c22844cf1ad693a3767bbe684 3 | timeCreated: 1701112955 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Agent.Runtime/VectorDistanceObserver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59a80ba5a44441368717ab4817fc061f 3 | timeCreated: 1686122257 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c149d94e25bf4d35a7f3f7c1de78409c 3 | timeCreated: 1699620854 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Core/Delegates.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Delegates.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d341009729914763b0ad5abcd43f89ae 3 | timeCreated: 1681377146 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Enums.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec6c1ac59ed368b43b7641dc56c0cf91 3 | timeCreated: 1651595824 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Enums/ClassRefStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b1a00d77cb14ac0b71c3e27ce2f7cab 3 | timeCreated: 1700156183 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Enums/Comparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Core/Enums/Comparison.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Enums/Comparison.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24d9e98f7f9646a09b0e7483aae10382 3 | timeCreated: 1679231392 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Enums/EffectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Core/Enums/EffectType.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Enums/EffectType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cb7bc8bcf4e4ef9bde6e8d4df7c47b9 3 | timeCreated: 1695400333 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Core/Interfaces.meta -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IActionConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6d7f7d82d084759b2906cb57f44eb4a 3 | timeCreated: 1681377324 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IAgentCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a0e767861904357935fd9a1cd70361f 3 | timeCreated: 1681377199 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IAgentType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9dc5669b6dc4711966a1d11e0176cde 3 | timeCreated: 1681377225 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IAgentTypeConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b24889333a7147a5b8c789dc0ac00fc0 3 | timeCreated: 1681377324 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IAgentTypeEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b910d1308f81426da98f9056256dca08 3 | timeCreated: 1700760573 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IAgentTypeJobRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ec830b0d3754701bab275838ea2590b 3 | timeCreated: 1700763533 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IClassConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 451a7727bef64dbda373fb6b693401ea 3 | timeCreated: 1681377324 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IClassRef.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a2d3d376d5c484ca9f48bf246b3a77b 3 | timeCreated: 1700156322 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/ICondition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ed79d82c9c6435aa6e8a11a51ae1a74 3 | timeCreated: 1677950112 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b32210c182e94f9ca4eadedaa8465500 3 | timeCreated: 1669912829 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IConnectable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23d387380ff241a3833fc7e680647dd0 3 | timeCreated: 1677950003 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/ICostObserver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42d8cb6f31524224953764def208510a 3 | timeCreated: 1669147501 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a0a06cbcfa841109a9dfe0537558405 3 | timeCreated: 1677950112 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGlobalWorldData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c70bb79bce4e4711984bf9778ba84cb0 3 | timeCreated: 1699622161 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoal.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoalConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 934052ff4d14435395674bc7bb17333d 3 | timeCreated: 1669915377 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoalRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffba1c43e75347fdb41d4866266d5bdf 3 | timeCreated: 1719595021 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoap.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e2aed700161433991d53fb326d40684 3 | timeCreated: 1669137713 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoapAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6872cdf13c348d3b0afa96b51bb163e 3 | timeCreated: 1719322827 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoapActionProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d5a66415bbe4ffb911ad89d0424df52 3 | timeCreated: 1719323184 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoapAgentEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c067c4e113984d488abcbaca4624d406 3 | timeCreated: 1719392577 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoapConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4f85c38039a4476b2b8a7ea253b805c 3 | timeCreated: 1683709642 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoapController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42226f10e5084cbdbe2dd324bff70e9e 3 | timeCreated: 1700761304 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoapEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2a227f2f54d41e7b701c6557e79f47f 3 | timeCreated: 1700760584 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoapInjector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f6d9ea284d94c7d83d1aa7fecc9495a 3 | timeCreated: 1680806290 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGoapResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cd56ce73b854b37983e0965ea43c407 3 | timeCreated: 1669136774 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGraph.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45737869515942078b206b8f12592804 3 | timeCreated: 1699622995 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IHasConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d92b4bcdceb24155aabc37c9603a5b12 3 | timeCreated: 1669918311 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IKeyResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e4224ec12df42edbe18a1d82bcb4523 3 | timeCreated: 1669146503 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/ILocalWorldData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58be039f0403480e9daf093ce0d56167 3 | timeCreated: 1699622161 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IMultiSensor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1937120e650440c88195b4806b9fecfa 3 | timeCreated: 1700075629 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IMultiSensorConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52ea3d1fe45a4e3f878fec9a178d7380 3 | timeCreated: 1700076279 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/INode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Core/Interfaces/INode.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/INode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a8058e5e69f4dfc8c799fbcaa9ef60f 3 | timeCreated: 1699622871 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/INodeCondition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b6715902ac8497c93580d5d39c798a2 3 | timeCreated: 1699622883 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/INodeEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c79fea7b4a74dd48f94ede2b98af8a7 3 | timeCreated: 1699622893 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/ISensorRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b79dd4ce2be14f6cae997d6093d0fabf 3 | timeCreated: 1681723003 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/ISensorTimer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5c1ef02cd9246718a65df35772954af 3 | timeCreated: 1727183185 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/ITargetKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd5999c5e0704e1ba7c9e7b567bbf869 3 | timeCreated: 1669917013 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/ITargetSensorConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0df1fc0fa2c94390aea746471dba6bf1 3 | timeCreated: 1669917826 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IValidationResults.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d3687e597b94a06815502edf442256c 3 | timeCreated: 1699622044 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IWorldKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ae0b62093e54977babda3d50705bd22 3 | timeCreated: 1669917019 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/Interfaces/IWorldSensorConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d457951947534f42ab11b69afa06ea1b 3 | timeCreated: 1669917448 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/SenseValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Core/SenseValue.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/SenseValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 486e9db7003b45f7a27841f3fdd60fcf 3 | timeCreated: 1679233047 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Core/com.crashkonijn.goap.core.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1492f7fc38ce464dae5c20df05fd22e3 3 | timeCreated: 1699620860 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ca5d9782dc421da44876d69cda437c 3 | timeCreated: 1675164992 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/ConditionBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a67dd3f93a440c58832eac0bf68608d 3 | timeCreated: 1685533633 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/CostBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Resolver/CostBuilder.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/CostBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6854af7708fc4df28c897aff138c7f92 3 | timeCreated: 1681713779 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/EnabledBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60af08de40ca48a9b68b3524f216e122 3 | timeCreated: 1718716502 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/ExecutableBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5015f5dbad64e898a830a799fea2caa 3 | timeCreated: 1677518685 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Resolver/Extensions.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ca39dddb77d4fe3833a8dba934b04de 3 | timeCreated: 1677950379 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/GraphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Resolver/GraphBuilder.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/GraphBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 595910f2227f4bf7811b997b7647c47f 3 | timeCreated: 1677950269 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/GraphResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Resolver/GraphResolver.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/GraphResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11290907150d494bbe4b67c31a19aa33 3 | timeCreated: 1675166229 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/GraphResolverJob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 013860f65e9942e293f0e7eb3adb08c4 3 | timeCreated: 1675165069 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a1f3e67f5734307aa983a293b2d7411 3 | timeCreated: 1677950003 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Interfaces/ICostBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e520446794cf45f9acbb2df34025c8a5 3 | timeCreated: 1683709513 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Interfaces/IEnabledBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0167540b80be420fa2bcffb7061a51aa 3 | timeCreated: 1718716477 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Interfaces/IGraphResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72a3a4a3fe6f46d8b422ddb18e5d1eec 3 | timeCreated: 1683704700 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Interfaces/IPositionBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baad1b3c4d9e4a6cafec13e0d2647e00 3 | timeCreated: 1683709491 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Interfaces/IResolveHandle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c13523f4e7141fa9205931b627bb43c 3 | timeCreated: 1681722929 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbff2c0f7f8847c5afc4442cc6c0b7b8 3 | timeCreated: 1677949882 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Models/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Resolver/Models/Graph.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Models/Graph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db2206a6d2904a0eae7e07ec801bf5f6 3 | timeCreated: 1677949882 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Models/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Resolver/Models/Node.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Models/Node.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b5af37e8c8147d38a31525c3d3eb63f 3 | timeCreated: 1677949882 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/Models/NodeCondition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af4d7964a6994955871f0541edf5717a 3 | timeCreated: 1677949882 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/NativeHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Resolver/NativeHeap.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/NativeHeap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87277cc92c684bcfae69c7c70d0687db 3 | timeCreated: 1675165069 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/PositionBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58adea8ac967491ebab39128dd1270f9 3 | timeCreated: 1677529833 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/ResolveHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Resolver/ResolveHandle.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Resolver/ResolveHandle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a94800c82e87497dbac5c0556e17d79b 3 | timeCreated: 1681463806 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime.meta -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f397a7d7524d4a4d8dd6b097556a97fa 3 | timeCreated: 1669913539 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Attributes/ButtonAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab75276260f345f49f9e8956cbea673d 3 | timeCreated: 1721204849 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Attributes/GoapIdAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30d201b7fe9040a8afd4b250ea588450 3 | timeCreated: 1697130756 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Behaviours.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/Behaviours.meta -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Behaviours/ActionBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a942c3bc74be42c4b51a21cb9e1a65e2 3 | timeCreated: 1726665841 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Behaviours/AgentTypeEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 457d4016ae2343e085ac700a742a1569 3 | timeCreated: 1700760961 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Behaviours/GoapActionBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 601a5c20417d4ddeaffa9114a0344ee6 3 | timeCreated: 1719324148 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Behaviours/GoapAgentEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2fbeb10bc7545fe96b9089791fb59b7 3 | timeCreated: 1719385745 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Behaviours/GoapConfigBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcd0774ac67f41648f1fb204aa6b741c 3 | timeCreated: 1680807144 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Behaviours/GoapEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a17ad0b683648229ecfd325a156b694 3 | timeCreated: 1700765114 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Behaviours/WorldKeyBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e6155ebe7f7438895f936a988122807 3 | timeCreated: 1684224910 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/ClassScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/ClassScanner.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/ClassScanner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4754a672bf04887a4c619888aba7139 3 | timeCreated: 1700156752 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/Classes.meta -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/AgentType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ceaebfb01554c54aee32ee2c7d96be4 3 | timeCreated: 1670952397 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/AgentTypeFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30ed736ba48a4ee48d9c0c4b425d20c8 3 | timeCreated: 1670952698 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/Builders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ed1eebb330a46d2af5b2f7fa117c638 3 | timeCreated: 1678107386 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/Builders/GoalBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 147954dfda5a4a37a80ae2d934a6959b 3 | timeCreated: 1681463085 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/CapabilityFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36c58ad73ee5461b925717a2650b07ff 3 | timeCreated: 1718790357 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/Condition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91fc452f9ee044c598d90fac91ac7586 3 | timeCreated: 1669920821 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/Controllers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e4beb890c174ea3aad84b440e73b9d1 3 | timeCreated: 1701195644 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/Effect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/Classes/Effect.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/Effect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 649dc3231a0b4fada049c325da6966d4 3 | timeCreated: 1669921115 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/GoalRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87b7e2fc43d04842a1bcb7307af6af11 3 | timeCreated: 1719932519 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/GoapAgentLogger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7db59576e6df4bba819332c8f81dbf19 3 | timeCreated: 1719403848 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/Injectors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fbf8a2a04174be594eee7b0b3d0bbc2 3 | timeCreated: 1680806221 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/RunStates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03cd66c7a30049c29929bd6d959e9515 3 | timeCreated: 1701250781 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/RunStates/StopAndLog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0edbc7b7e964d418402cc4074741b24 3 | timeCreated: 1719996355 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/Runners/Goap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71c83d4e50ec4dc0ac473f9eddfb53ee 3 | timeCreated: 1669137663 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Classes/Validators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8540eda1f93c4d0697d85a259bfc23b2 3 | timeCreated: 1681470328 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Configs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 649d8e39aa0d4ff1a85a6e7cab79bb7e 3 | timeCreated: 1669912506 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Configs/AgentTypeConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3a433b97c0e4cab899dd7dfcdb3b2fd 3 | timeCreated: 1669917820 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Configs/GoalConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f870c0add3a4eb1ae30a8f3f99b2cd0 3 | timeCreated: 1669912506 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Configs/MultiSensorConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1613ee17119429dafe98b1aecb0180c 3 | timeCreated: 1700478719 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Configs/TargetKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e4ace41acea4541b31ad27cdf9a343d 3 | timeCreated: 1669916444 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Configs/TargetSensorConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 226253c209fe4e3c899c1cfdb909c55b 3 | timeCreated: 1669917517 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Configs/WorldKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13cda680141846ce909ff3e2c15558bd 3 | timeCreated: 1669915364 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Configs/WorldSensorConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c998503d0164585a1be51cba766cd04 3 | timeCreated: 1669917058 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11dc2bc832cf4f7593a57336d488a4be 3 | timeCreated: 1681472211 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Exceptions/GoapException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dee0427a2044c3b8c14d68878f66eed 3 | timeCreated: 1681472211 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/Extensions.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a682f3b53744f40bcf8b0b3126da8b4 3 | timeCreated: 1682017979 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Generators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6398b9d95bd9446984168b822bdb87a7 3 | timeCreated: 1703183185 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Generators/ClassGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a05a9e244078426c846f8578ce2ee08b 3 | timeCreated: 1703183185 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/GuidCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/GuidCacheKey.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/GuidCacheKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7f77a2f13844b2a8c1011dec25957ec 3 | timeCreated: 1726571142 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/LocalWorldData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/LocalWorldData.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Observers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/Observers.meta -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Resolvers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1002ff69d2cc4b38b265a7bb9d3d28a7 3 | timeCreated: 1669144992 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/Script.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Script.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c62bfd5bcbb74cd89e0849cc34cb1e3c 3 | timeCreated: 1721204059 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/ScriptIdValidator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e8c74cdce2649c698dbfd0d56f3a936 3 | timeCreated: 1701529766 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Scriptables.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/Scriptables.meta -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Scriptables/CapabilityAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d653bdc23ff423fa9d7c6f377541161 3 | timeCreated: 1721207823 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Scriptables/CapabilityEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83eb43d0fa4141ff9ae85b124aecd874 3 | timeCreated: 1721207823 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Scriptables/CapabilityGoal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2f0e37ee3e2494588db0bd8b37855f3 3 | timeCreated: 1721207823 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Scriptables/CapabilitySensor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bf837fdcb334b23994eebc5ca4a35be 3 | timeCreated: 1721207823 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Scriptables/Legacy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abff794b6a654d9287f6a39d4bc7a4a0 3 | timeCreated: 1720013545 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Scripts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/Scripts.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Scripts.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9098f8ae9f764bc3a94db73f46adbbd0 3 | timeCreated: 1721204059 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/SensorTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/SensorTimer.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Sensors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d30ba66653474db6990ae43d45f9f1d8 3 | timeCreated: 1669143906 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/Sensors/MultiSensorBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 771dd3a04b4c47669de3296e84bda16a 3 | timeCreated: 1700136774 -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/WorldDataBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Runtime/CrashKonijn.Goap.Runtime/WorldDataBase.cs -------------------------------------------------------------------------------- /Package/Runtime/CrashKonijn.Goap.Runtime/WorldDataBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e08d60803d24045bb01beb0354a8177 3 | timeCreated: 1677865968 -------------------------------------------------------------------------------- /Package/Samples~/default/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Package/Samples~/default/demo.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Samples~/default/demo.unitypackage -------------------------------------------------------------------------------- /Package/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Tests.meta -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Tests/CrashKonijn.Goap.Tests.meta -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Tests/CrashKonijn.Goap.Tests/UnitTests.meta -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/ActionRunnerTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5623df8ee2a444dd975e1b87f22f9771 3 | timeCreated: 1701246076 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/AgentBehaviourTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79368535800c4d8da4e4a2dc5cbefbb3 3 | timeCreated: 1681378114 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/ClassResolverTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 146c576de935412bbc2aeb6dbe2b1ed6 3 | timeCreated: 1669221177 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Classes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60106173c2b446fb9c9c644eaca56146 3 | timeCreated: 1681380572 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Classes/TestAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a75818aaa0814ebabd3283374148174e 3 | timeCreated: 1681380589 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Classes/TestGoal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 303d36a064d346189aae3213709f22e8 3 | timeCreated: 1681380572 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Classes/TestKeys.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0af8e3b6d6b34bed9a8dfd6a118e8111 3 | timeCreated: 1718713594 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Data.meta -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Data/LocalTargetSensor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8997774b16c34392b02e97b3eae43847 3 | timeCreated: 1669919487 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Data/StringCondition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e37425621ce4801b5a14d6a878f664b 3 | timeCreated: 1675443411 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Data/StringEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5c1e68e53974035b7f1392db41ccab2 3 | timeCreated: 1675443411 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Data/TestConnection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fb37a82b23a46589e0f1900882ab217 3 | timeCreated: 1675443596 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Data/TestKeyResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9706cbba5bf4423f979386a75a25cef4 3 | timeCreated: 1675443411 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/GoapActionBaseTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f81af5505434892ba048e345e7f4997 3 | timeCreated: 1724313636 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/GraphBuilderTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b45d1ca6acef46ff91cc0d582f20f9b4 3 | timeCreated: 1732866746 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/GraphResolverTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27abfdc99dfc47c7a966a53df71a4e7d 3 | timeCreated: 1675186432 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2c4cbe25f5848b59547e3db1c708245 3 | timeCreated: 1699630104 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Interfaces/ITestAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e06228432b54b9b9beb49cf2fea64ff 3 | timeCreated: 1699630128 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Interfaces/ITestGoal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a6175b8903e4fb994b503326bf8b363 3 | timeCreated: 1699630104 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/ManualControllerTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b725d9f7027a4e9cb0d97919e6b47e58 3 | timeCreated: 1701195923 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/MultiSensorBaseTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54f47fe455934c1d8b6bb1747b4e8dfe 3 | timeCreated: 1700152587 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/SensorRunnerTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e24810d97c6c48f194f664e27fcf0649 3 | timeCreated: 1669927605 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Support/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf976e8fe2184b0e97cf862a9757ceee 3 | timeCreated: 1681379125 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/Validators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243b940e983d4481b9bbf40600bc34d3 3 | timeCreated: 1681911620 -------------------------------------------------------------------------------- /Package/Tests/CrashKonijn.Goap.Tests/UnitTests/WorldDataBaseTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f6d3aa5427f4ded878166c6a76db5c7 3 | timeCreated: 1700153473 -------------------------------------------------------------------------------- /Package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/package.json -------------------------------------------------------------------------------- /Package/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/Package/package.json.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashkonijn/GOAP/HEAD/README.md --------------------------------------------------------------------------------