Skip to content

Commit

Permalink
Merge pull request Synesthesias#122 from Synesthesias/dev/v2
Browse files Browse the repository at this point in the history
v1.1.5 サンプルが動かないのを修正
  • Loading branch information
linoal authored Jun 24, 2023
2 parents 86cc3ee + df01981 commit 1a863b2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Samples/AttributesSample/Scripts/ClickToShowAttributes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,15 @@ private void Start()
Debug.LogError("メインカメラがありません。");
}

string samplePath = PathUtil.SdkPathToAssetPath("Samples");
if (!Directory.Exists(samplePath)) samplePath = PathUtil.SdkPathToAssetPath("Samples~/");

// !!! 重要 :
// !!! サンプルデータではなくご自分のデータを使いたい場合は、この値を空文字に変更してください。
// ここを空文字にすると、PLATEAU SDK ウィンドウの操作で都市データをインポートしたときのパスに自動設定されます。
#if UNITY_EDITOR
this.cityDataPath = // ""; // ここを空文字にするとインポートしたデータを利用します。
PathUtil.SdkPathToAssetPath("Samples"); // この行は Editorでのみ動きます。
samplePath; // この行は Editorでのみ動きます。
#endif
}

Expand Down
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
{
"name": "com.synesthesias.plateau-unity-sdk",
"version": "1.1.4",
"version": "1.1.5",
"displayName": "PLATEAU SDK for Unity",
"description": "このパッケージには、PLATEAUの3D都市モデルデータを利用するためのAPI、サンプルが含まれます。PLATEAU SDK for Unityを利用することで、実世界を舞台にしたゲームの開発や、PLATEAUの豊富なデータを活用したシミュレーションを簡単に行うことができます。",
"unity": "2021.3",
"dependencies": {
"com.unity.formats.fbx" : "4.1.2",
"com.unity.test-framework" : "1.1.31"
},
"author":{
"author": {
"name": "Synesthesias Inc."
}
},
"samples": [
{
"displayName": "PLATEAU Samples",
"description": "PLATEAUのサンプルです。",
"path": "Samples~"
}
]
}

0 comments on commit 1a863b2

Please sign in to comment.