소스 검색

Updated package dependencies and bumped to v0.2.0

James Peret 2 년 전
부모
커밋
2fc1144913
3개의 변경된 파일19개의 추가작업 그리고 4개의 파일을 삭제
  1. 9 1
      Readme.md
  2. 3 1
      Runtime/KairoEngine.StorySystem.asmdef
  3. 7 2
      package.json

+ 9 - 1
Readme.md

@@ -1,13 +1,15 @@
-# 📦 KairoEngine.StorySystem v0.1.6
+# 📦 KairoEngine.StorySystem v0.2.0
 
 The Story System uses the Ink Language and runtime to navigate through a story written in a plain text file. This package contains the Story Module that receives an ink story and runs it. The story can show lines and branches, execute functions in unity and wait for events. Unity also has an API for navigating, getting and setting variables in the story.
 
 ### 🛑Required packages
 
 - `KairoEngine.Core`
+- `KairoEngine.UI`
 - `Ink`
 - `UniRX`
 - `TextMeshPro`
+- `Sirenix`
 
 ### 📄Namespaces
 
@@ -188,6 +190,12 @@ StoryController.Lines().Subscribe(storyStep => {
 
 The Story Controller Lines observer requires the ``kairoEngine.StorySystem`` namespace.
 
+### 📄Changelog
+
+##### v0.2.0
+
+- Upgraded GameModule system
+
 ### 🎈Back Log
 
 - [ ] Support for multiple stories

+ 3 - 1
Runtime/KairoEngine.StorySystem.asmdef

@@ -1,11 +1,13 @@
 {
     "name": "KairoEngine.StorySystem",
+    "rootNamespace": "",
     "references": [
         "GUID:7e5ae6a38d1532248b4c890eca668b06",
         "GUID:142285d3db5e7e849b02ea3a75bc2de7",
         "GUID:58bed0e7c5306824586d7eda03609289",
         "GUID:560b04d1a97f54a4e82edc0cbbb69285",
-        "GUID:6055be8ebefd69e48b49212b09b47b2f"
+        "GUID:6055be8ebefd69e48b49212b09b47b2f",
+        "GUID:e048eeec9bdb9d30448017b829deb3f6"
     ],
     "includePlatforms": [],
     "excludePlatforms": [],

+ 7 - 2
package.json

@@ -1,11 +1,16 @@
 {
     "name": "at.kairoscope.kairoengine.story-system",
     "displayName": "KairoEngine Story System",
-    "version": "0.1.6",
+    "version": "0.2.0",
     "unity": "2020.3",
     "description": "Kairoengine story system based on the Ink language.",
     "dependencies": {
-      "at.kairoscope.thirdparty.ink":"1.0.0"
+      "at.kairoscope.kairoengine.core":"0.2.0",
+      "at.kairoscope.kairoengine.ui":"0.2.0",
+      "at.kairoscope.thirdparty.ink":"1.0.0",
+      "at.kairoscope.thirdparty.unirx":"1.0.0",
+      "at.kairoscope.thirdparty.tmpro":"1.0.0",
+      "at.kairoscope.thirdparty.sirenix":"1.0.2"
     },
     "repository": {
       "type": "git",