You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+74-28Lines changed: 74 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -32,14 +32,21 @@ Ensure that you have the following prerequisites:
32
32
33
33
## Configuring Unity
34
34
* Change the build settings in Unity (**File > Build Settings**) to any platform except for web player/Web GL. The IBM Watson SDK for Unity does not support Unity Web Player.
35
-
* If using Unity 2018.2 or later you'll need to set Scripting Runtime Version and Api Compatibility Level in Build Settings to .NET 4.x equivalent. We need to access security options to enable TLS 1.2.
35
+
* If using Unity 2018.2 or later you'll need to set **Scripting Runtime Version** and **Api Compatibility Level** in Build Settings to **.NET 4.x equivalent**. We need to access security options to enable TLS 1.2.
36
36
37
37
## Getting the Watson SDK and adding it to Unity
38
38
You can get the latest SDK release by clicking [here][latest_release].
39
39
40
40
### Installing the SDK source into your Unity project
41
-
1. Move the **`unity-sdk`** directory into the **`Assets`** directory of your Unity project. _Optional: rename the SDK directory from `unity-sdk` to `Watson`_.
42
-
2. Using the command line, from the sdk directory run `git submodule init` and `git submodule update` to get the correct commit of the SDK core.
41
+
Move the **`unity-sdk`** directory into the **`Assets`** directory of your Unity project. _Optional: rename the SDK directory from `unity-sdk` to `Watson`_.
42
+
43
+
The SDK depends on the [IBM Unity SDK Core](https://github.com/IBM/unity-sdk-core/) which is added to the SDK as a submodule. Use git to initalize and update the submodule.
44
+
45
+
```bash
46
+
$ cd [watson-unity-sdk-directory]
47
+
$ git submodule init
48
+
$ git submodule update
49
+
```
43
50
44
51
## Configuring your service credentials
45
52
To create instances of Watson services and their credentials, follow the steps below.
@@ -67,19 +74,19 @@ The credentials for each service contain either a `username`, `password` and end
67
74
68
75
## Watson Services
69
76
To get started with the Watson Services in Unity, click on each service below to read through each of their `README.md`'s and their codes.
0 commit comments