Skip to content

Commit df8073b

Browse files
Updated input system to 1.3.0 (#5661)
* Updated input system to 1.3.0 * Updated DevProject to Input System 1.3.0.
1 parent f93e2f9 commit df8073b

File tree

6 files changed

+20
-14
lines changed

6 files changed

+20
-14
lines changed

DevProject/Packages/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dependencies": {
33
"com.unity.coding": "0.1.0-preview.13",
4-
"com.unity.inputsystem": "1.1.0-preview.3",
4+
"com.unity.inputsystem": "1.3.0",
55
"com.unity.ml-agents": "file:../../com.unity.ml-agents",
66
"com.unity.ml-agents.extensions": "file:../../com.unity.ml-agents.extensions",
77
"com.unity.package-manager-doctools": "1.7.0-preview",

DevProject/Packages/packages-lock.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"depth": 1,
66
"source": "registry",
77
"dependencies": {
8-
"com.unity.burst": "1.3.4",
8+
"com.unity.burst": "1.6.0",
99
"com.unity.modules.jsonserialize": "1.0.0",
1010
"com.unity.modules.imageconversion": "1.0.0"
1111
},
1212
"url": "https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-candidates"
1313
},
1414
"com.unity.burst": {
15-
"version": "1.3.4",
15+
"version": "1.6.0",
1616
"depth": 2,
1717
"source": "registry",
1818
"dependencies": {
@@ -37,10 +37,12 @@
3737
"url": "https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-candidates"
3838
},
3939
"com.unity.inputsystem": {
40-
"version": "1.1.0-preview.3",
40+
"version": "1.3.0",
4141
"depth": 0,
4242
"source": "registry",
43-
"dependencies": {},
43+
"dependencies": {
44+
"com.unity.modules.uielements": "1.0.0"
45+
},
4446
"url": "https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-candidates"
4547
},
4648
"com.unity.mathematics": {

Project/Assets/ML-Agents/Examples/PushBlockWithInput/Scripts/PushBlockActions.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//------------------------------------------------------------------------------
22
// <auto-generated>
33
// This code was auto-generated by com.unity.inputsystem:InputActionCodeGenerator
4-
// version 1.1.0
4+
// version 1.3.0
55
// from Assets/ML-Agents/Examples/PushBlockWithInput/PushBlockActions.inputactions
66
//
77
// Changes to this file may cause incorrect behavior and will be lost if
@@ -33,15 +33,17 @@ public @PushBlockActions()
3333
""id"": ""5f47cbc6-de46-4d33-93e2-2b1af4f5996d"",
3434
""expectedControlType"": ""Vector2"",
3535
""processors"": """",
36-
""interactions"": """"
36+
""interactions"": """",
37+
""initialStateCheck"": true
3738
},
3839
{
3940
""name"": ""jump"",
4041
""type"": ""Button"",
4142
""id"": ""ca5eb833-5dfb-4b7c-880d-6118bd5d1378"",
4243
""expectedControlType"": ""Button"",
4344
""processors"": """",
44-
""interactions"": """"
45+
""interactions"": """",
46+
""initialStateCheck"": false
4547
}
4648
],
4749
""bindings"": [

Project/Packages/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dependencies": {
33
"com.unity.ide.rider": "3.0.5",
4-
"com.unity.inputsystem": "1.1.0-preview.3",
4+
"com.unity.inputsystem": "1.3.0",
55
"com.unity.ml-agents": "file:../../com.unity.ml-agents",
66
"com.unity.ml-agents.extensions": "file:../../com.unity.ml-agents.extensions",
77
"com.unity.nuget.newtonsoft-json": "2.0.0",

Project/Packages/packages-lock.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"depth": 1,
66
"source": "registry",
77
"dependencies": {
8-
"com.unity.burst": "1.3.4",
8+
"com.unity.burst": "1.6.0",
99
"com.unity.modules.jsonserialize": "1.0.0",
1010
"com.unity.modules.imageconversion": "1.0.0"
1111
},
1212
"url": "https://packages.unity.com"
1313
},
1414
"com.unity.burst": {
15-
"version": "1.3.4",
15+
"version": "1.6.0",
1616
"depth": 2,
1717
"source": "registry",
1818
"dependencies": {
@@ -35,10 +35,12 @@
3535
"url": "https://packages.unity.com"
3636
},
3737
"com.unity.inputsystem": {
38-
"version": "1.1.0-preview.3",
38+
"version": "1.3.0",
3939
"depth": 0,
4040
"source": "registry",
41-
"dependencies": {},
41+
"dependencies": {
42+
"com.unity.modules.uielements": "1.0.0"
43+
},
4244
"url": "https://packages.unity.com"
4345
},
4446
"com.unity.mathematics": {

com.unity.ml-agents.extensions/Runtime/Input/Unity.ML-Agents.Extensions.Input.asmdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"versionDefines": [
1616
{
1717
"name": "com.unity.inputsystem",
18-
"expression": "1.1.0-preview.3",
18+
"expression": "1.3.0",
1919
"define": "MLA_INPUT_SYSTEM"
2020
}
2121
],

0 commit comments

Comments
 (0)