Skip to content

Commit 6516fb4

Browse files
committed
Generated
1 parent f5aaac3 commit 6516fb4

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Addons/Entitas.Unity.VisualDebugging/Assets/Generated/Game/Components/GameISomeInterfaceComponent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public partial class GameContext {
1414

1515
public GameEntity SetISomeInterface(ISomeInterface newValue) {
1616
if(hasISomeInterface) {
17-
throw new Entitas.EntitasException("Could not set iSomeInterface!\n" + this + " already has an entity with ISomeInterfaceComponent!",
17+
throw new Entitas.EntitasException("Could not set ISomeInterface!\n" + this + " already has an entity with ISomeInterfaceComponent!",
1818
"You should check if the context already has a iSomeInterfaceEntity before setting it or use context.ReplaceISomeInterface().");
1919
}
2020
var entity = CreateEntity();

Addons/Entitas.Unity.VisualDebugging/Assets/Generated/Game/Components/GameUniqueComponent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public partial class GameContext {
1414

1515
public GameEntity SetUnique(string newValue) {
1616
if(hasUnique) {
17-
throw new Entitas.EntitasException("Could not set unique!\n" + this + " already has an entity with UniqueComponent!",
17+
throw new Entitas.EntitasException("Could not set Unique!\n" + this + " already has an entity with UniqueComponent!",
1818
"You should check if the context already has a uniqueEntity before setting it or use context.ReplaceUnique().");
1919
}
2020
var entity = CreateEntity();

Addons/Entitas.Unity.VisualDebugging/Assets/Generated/Game/GameComponentsLookup.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ public static class GameComponentsLookup {
2323
public const int HashSet = 12;
2424
public const int ISomeInterface = 13;
2525
public const int JaggedArray = 14;
26-
public const int List = 15;
27-
public const int ListArray = 16;
26+
public const int ListArray = 15;
27+
public const int List = 16;
2828
public const int ManyMembers = 17;
2929
public const int MonoBehaviourSubClass = 18;
3030
public const int MyBool = 19;
@@ -45,8 +45,8 @@ public static class GameComponentsLookup {
4545
public const int SomeStruct = 34;
4646
public const int SystemObject = 35;
4747
public const int Test = 36;
48-
public const int Texture = 37;
49-
public const int Texture2D = 38;
48+
public const int Texture2D = 37;
49+
public const int Texture = 38;
5050
public const int Unique = 39;
5151
public const int UnityObject = 40;
5252
public const int UnsupportedObject = 41;
@@ -73,8 +73,8 @@ public static class GameComponentsLookup {
7373
"HashSet",
7474
"ISomeInterface",
7575
"JaggedArray",
76-
"List",
7776
"ListArray",
77+
"List",
7878
"ManyMembers",
7979
"MonoBehaviourSubClass",
8080
"MyBool",
@@ -95,8 +95,8 @@ public static class GameComponentsLookup {
9595
"SomeStruct",
9696
"SystemObject",
9797
"Test",
98-
"Texture",
9998
"Texture2D",
99+
"Texture",
100100
"Unique",
101101
"UnityObject",
102102
"UnsupportedObject",
@@ -122,8 +122,8 @@ public static class GameComponentsLookup {
122122
typeof(HashSetComponent),
123123
typeof(ISomeInterfaceComponent),
124124
typeof(JaggedArrayComponent),
125-
typeof(ListComponent),
126125
typeof(ListArrayComponent),
126+
typeof(ListComponent),
127127
typeof(ManyMembersComponent),
128128
typeof(MonoBehaviourSubClassComponent),
129129
typeof(MyBoolComponent),
@@ -144,8 +144,8 @@ public static class GameComponentsLookup {
144144
typeof(SomeStructComponent),
145145
typeof(SystemObjectComponent),
146146
typeof(TestComponent),
147-
typeof(TextureComponent),
148147
typeof(Texture2DComponent),
148+
typeof(TextureComponent),
149149
typeof(UniqueComponent),
150150
typeof(UnityObjectComponent),
151151
typeof(UnsupportedObjectComponent),

0 commit comments

Comments
 (0)