From 04e0861ef21f7108d8ad4b41383d8e540b2c7b3e Mon Sep 17 00:00:00 2001 From: davidmcdonagh Date: Sat, 26 Feb 2022 21:51:56 +0000 Subject: [PATCH] Fix test asset paths when using as a package. --- LICENSE.md | 2 +- Runtime/TestMock.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index f6dd973..16589b2 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -BehaviourTreeDesigner +OpenBehaviourTree Copyright (c) 2022 David McDonagh diff --git a/Runtime/TestMock.cs b/Runtime/TestMock.cs index 41a32f4..3d4d715 100644 --- a/Runtime/TestMock.cs +++ b/Runtime/TestMock.cs @@ -13,8 +13,8 @@ public class TestMock * Holds mock objects for tests */ - string testBlackboardPath = "Packages/OpenBehaviourTree/Tests/TestAssets/TestBlackboard.asset"; - string testBehaviourTreePath = "Packages/OpenBehaviourTree/Tests/TestAssets/TestTree.asset"; + string testBlackboardPath = "Packages/com.davidmcdonagh-openbehaviourtree/Tests/TestAssets/TestBlackboard.asset"; + string testBehaviourTreePath = "Packages/com.davidmcdonagh-openbehaviourtree/Tests/TestAssets/TestTree.asset"; public static float ActionDuration(){ return .5f;