This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "interactionSets": { | |
| "question-sleep": { | |
| "initSetKey": "custom:hello", | |
| "buttons": [ | |
| { | |
| "text": "睡得不錯", | |
| "setKey": "custom:sleep-response-positive", | |
| "nextInteractionSet": null | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "speaking": { | |
| "hello": { | |
| "script": "早安~很開心見到您,昨晚睡得好嗎?", | |
| "states": [ | |
| "hello" | |
| ], | |
| "emotion": "positive", | |
| "emoji-expression": "hi", | |
| "audioSource": "tts", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "interactionSets": { | |
| "question-sleep": { | |
| "initSetKey": "custom:hello", | |
| "buttons": [ | |
| { | |
| "text": "睡得不錯", | |
| "setKey": "custom:sleep-response-positive", | |
| "nextInteractionSet": null | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| static void AddCapabilities (string pathToBuiltProject, PBXProject pbxProject, string targetGUID) { | |
| // Copy your entitlement file to Xcode project. The file can be found on built xcode project with the specified capabilities enabled | |
| string relativeDestination = "Libraries/Plugins/iOS/native_plugin/spacewalk.entitlements"; | |
| FileUtil.CopyFileOrDirectory ("Assets/Plugins/iOS/native_plugin/spacewalk.entitlements", pathToBuiltProject + "/" + relativeDestination); | |
| // Add file to Xcode project | |
| pbxProject.AddFile (pathToBuiltProject + "/" + relativeDestination, relativeDestination); | |
| pbxProject.AddBuildProperty (targetGUID, "CODE_SIGN_ENTITLEMENTS", relativeDestination); |