Skip to content

Commit a8ba533

Browse files
committed
The the processors are split by , instead of ; it was typo
1 parent 4e76813 commit a8ba533

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Packages/com.unity.inputsystem/InputSystem/Actions/InputActionAsset.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ internal void MigrateJson(ref ReadFileJson parsedJson)
10631063
}
10641064
}
10651065

1066-
actionJson.processors = string.Join(";", rebuilt);
1066+
actionJson.processors = string.Join(",", rebuilt);
10671067
mapJson.actions[ai] = actionJson;
10681068
}
10691069
parsedJson.maps[mi] = mapJson;

0 commit comments

Comments
 (0)