com.elestrago.unity.entitas-redux 3.0.13 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (513) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/Core/Attributes/CleanupAttribute.cs +45 -0
  3. package/{Scripts/Blueprints/BlueprintBase.cs.meta → Core/Attributes/CleanupAttribute.cs.meta} +1 -1
  4. package/Core/Attributes/CleanupMode.cs +33 -0
  5. package/{Scripts/Blueprints/BlueprintBehaviourBase.cs.meta → Core/Attributes/CleanupMode.cs.meta} +1 -1
  6. package/Core/Attributes/ContextAttribute.cs +42 -0
  7. package/{Scripts/Blueprints/AssemblyInfo.cs.meta → Core/Attributes/ContextAttribute.cs.meta} +1 -1
  8. package/Core/Attributes/CustomEntityIndexAttribute.cs +40 -0
  9. package/Core/Attributes/CustomEntityIndexAttribute.cs.meta +11 -0
  10. package/Core/Attributes/DontDrawComponentAttribute.cs +36 -0
  11. package/Core/Attributes/DontDrawComponentAttribute.cs.meta +11 -0
  12. package/Core/Attributes/DontGenerateAttribute.cs +40 -0
  13. package/Core/Attributes/DontGenerateAttribute.cs.meta +11 -0
  14. package/Core/Attributes/EntityIndex/AbstractEntityIndexAttribute.cs +39 -0
  15. package/Core/Attributes/EntityIndex/AbstractEntityIndexAttribute.cs.meta +11 -0
  16. package/Core/Attributes/EntityIndex/EntityIndexAttribute.cs +37 -0
  17. package/Core/Attributes/EntityIndex/EntityIndexAttribute.cs.meta +11 -0
  18. package/Core/Attributes/EntityIndex/EntityIndexGetMethodAttribute.cs +34 -0
  19. package/Core/Attributes/EntityIndex/EntityIndexGetMethodAttribute.cs.meta +11 -0
  20. package/Core/Attributes/EntityIndex/EntityIndexType.cs +33 -0
  21. package/Core/Attributes/EntityIndex/EntityIndexType.cs.meta +11 -0
  22. package/Core/Attributes/EntityIndex/PrimaryEntityIndexAttribute.cs +37 -0
  23. package/Core/Attributes/EntityIndex/PrimaryEntityIndexAttribute.cs.meta +11 -0
  24. package/Core/Attributes/EntityIndex.meta +8 -0
  25. package/Core/Attributes/EventAttribute.cs +46 -0
  26. package/Core/Attributes/EventAttribute.cs.meta +11 -0
  27. package/Core/Attributes/EventTarget.cs +8 -0
  28. package/Core/Attributes/EventTarget.cs.meta +11 -0
  29. package/Core/Attributes/EventType.cs +8 -0
  30. package/Core/Attributes/EventType.cs.meta +11 -0
  31. package/Core/Attributes/FlagPrefixAttribute.cs +40 -0
  32. package/Core/Attributes/FlagPrefixAttribute.cs.meta +11 -0
  33. package/Core/Attributes/GenerateEntityInterfaceAttribute.cs +9 -0
  34. package/Core/Attributes/GenerateEntityInterfaceAttribute.cs.meta +11 -0
  35. package/Core/Attributes/PostConstructorAttribute.cs +34 -0
  36. package/Core/Attributes/PostConstructorAttribute.cs.meta +11 -0
  37. package/Core/Attributes/UniqueAttribute.cs +34 -0
  38. package/Core/Attributes/UniqueAttribute.cs.meta +11 -0
  39. package/{Scripts/Blueprints.meta → Core/Attributes.meta} +1 -1
  40. package/Core/Collector/Collector.cs +233 -0
  41. package/Core/Collector/Collector.cs.meta +11 -0
  42. package/Core/Collector/CollectorContextExtension.cs +67 -0
  43. package/Core/Collector/CollectorContextExtension.cs.meta +11 -0
  44. package/Core/Collector/CollectorException.cs +35 -0
  45. package/Core/Collector/CollectorException.cs.meta +11 -0
  46. package/Core/Collector/ComponentReplacedCollector.cs +123 -0
  47. package/Core/Collector/ComponentReplacedCollector.cs.meta +11 -0
  48. package/Core/Collector/ICollector.cs +48 -0
  49. package/Core/Collector/ICollector.cs.meta +11 -0
  50. package/Core/Collector/SlimCollector.cs +227 -0
  51. package/Core/Collector/SlimCollector.cs.meta +11 -0
  52. package/Core/Collector/TriggerOnEvent.cs +40 -0
  53. package/Core/Collector/TriggerOnEvent.cs.meta +11 -0
  54. package/Core/Collector/TriggerOnEventMatcherExtension.cs +48 -0
  55. package/Core/Collector/TriggerOnEventMatcherExtension.cs.meta +11 -0
  56. package/Core/Collector.meta +8 -0
  57. package/Core/Commands/CommandAttribute.cs +9 -0
  58. package/Core/Commands/CommandAttribute.cs.meta +11 -0
  59. package/Core/Commands/CommandBuffer.cs +106 -0
  60. package/Core/Commands/CommandBuffer.cs.meta +11 -0
  61. package/Core/Commands/ICommandBuffer.cs +15 -0
  62. package/Core/Commands/ICommandBuffer.cs.meta +11 -0
  63. package/Core/Commands.meta +8 -0
  64. package/Core/Context/Context.cs +521 -0
  65. package/Core/Context/Context.cs.meta +11 -0
  66. package/Core/Context/ContextExtension.cs +43 -0
  67. package/Core/Context/ContextExtension.cs.meta +11 -0
  68. package/Core/Context/Delegates/ContextEntityChanged.cs +29 -0
  69. package/Core/Context/Delegates/ContextEntityChanged.cs.meta +11 -0
  70. package/Core/Context/Delegates/ContextGroupChanged.cs +29 -0
  71. package/Core/Context/Delegates/ContextGroupChanged.cs.meta +11 -0
  72. package/Core/Context/Delegates.meta +8 -0
  73. package/Core/Context/EntityRepo.cs +179 -0
  74. package/Core/Context/EntityRepo.cs.meta +11 -0
  75. package/Core/Context/Exceptions/ContextDoesNotContainEntityException.cs +35 -0
  76. package/Core/Context/Exceptions/ContextDoesNotContainEntityException.cs.meta +11 -0
  77. package/Core/Context/Exceptions/ContextEntityIndexDoesAlreadyExistException.cs +37 -0
  78. package/Core/Context/Exceptions/ContextEntityIndexDoesAlreadyExistException.cs.meta +11 -0
  79. package/Core/Context/Exceptions/ContextEntityIndexDoesNotExistException.cs +41 -0
  80. package/Core/Context/Exceptions/ContextEntityIndexDoesNotExistException.cs.meta +11 -0
  81. package/Core/Context/Exceptions/ContextInfoException.cs +43 -0
  82. package/Core/Context/Exceptions/ContextInfoException.cs.meta +11 -0
  83. package/Core/Context/Exceptions/ContextStillHasRetainedEntitiesException.cs +64 -0
  84. package/Core/Context/Exceptions/ContextStillHasRetainedEntitiesException.cs.meta +11 -0
  85. package/Core/Context/Exceptions/EntityIsNotDestroyedException.cs +38 -0
  86. package/Core/Context/Exceptions/EntityIsNotDestroyedException.cs.meta +11 -0
  87. package/Core/Context/Exceptions.meta +8 -0
  88. package/Core/Context/IContext.cs +78 -0
  89. package/Core/Context/IContext.cs.meta +11 -0
  90. package/Core/Context/IContexts.cs +32 -0
  91. package/Core/Context/IContexts.cs.meta +11 -0
  92. package/Core/Context.meta +8 -0
  93. package/Core/ContextInfo.cs +44 -0
  94. package/Core/ContextInfo.cs.meta +11 -0
  95. package/{Scripts/Blueprints/EntitasRedux.Blueprints.asmdef → Core/EntitasRedux.Core.asmdef} +5 -4
  96. package/{Scripts/Blueprints/EntitasRedux.Blueprints.asmdef.meta → Core/EntitasRedux.Core.asmdef.meta} +1 -1
  97. package/Core/EntitasReduxException.cs +40 -0
  98. package/Core/EntitasReduxException.cs.meta +11 -0
  99. package/Core/Entity/Delegates/EntityComponentChanged.cs +31 -0
  100. package/Core/Entity/Delegates/EntityComponentChanged.cs.meta +11 -0
  101. package/Core/Entity/Delegates/EntityComponentReplaced.cs +31 -0
  102. package/Core/Entity/Delegates/EntityComponentReplaced.cs.meta +11 -0
  103. package/Core/Entity/Delegates.meta +8 -0
  104. package/Core/Entity/Entity.cs +710 -0
  105. package/Core/Entity/Entity.cs.meta +11 -0
  106. package/Core/Entity/EntityEqualityComparer.cs +39 -0
  107. package/Core/Entity/EntityEqualityComparer.cs.meta +11 -0
  108. package/Core/Entity/EntityEvent.cs +29 -0
  109. package/Core/Entity/EntityEvent.cs.meta +11 -0
  110. package/Core/Entity/Events/EventDisposable.cs +31 -0
  111. package/Core/Entity/Events/EventDisposable.cs.meta +11 -0
  112. package/Core/Entity/Events.meta +8 -0
  113. package/Core/Entity/Exceptions/EntityAlreadyHasComponentException.cs +35 -0
  114. package/Core/Entity/Exceptions/EntityAlreadyHasComponentException.cs.meta +11 -0
  115. package/Core/Entity/Exceptions/EntityDoesNotHaveComponentException.cs +35 -0
  116. package/Core/Entity/Exceptions/EntityDoesNotHaveComponentException.cs.meta +11 -0
  117. package/Core/Entity/Exceptions/EntityIsAlreadyRetainedByOwnerException.cs +42 -0
  118. package/Core/Entity/Exceptions/EntityIsAlreadyRetainedByOwnerException.cs.meta +11 -0
  119. package/Core/Entity/Exceptions/EntityIsNotEnabledException.cs +38 -0
  120. package/Core/Entity/Exceptions/EntityIsNotEnabledException.cs.meta +11 -0
  121. package/Core/Entity/Exceptions/EntityIsNotRetainedByOwnerException.cs +42 -0
  122. package/Core/Entity/Exceptions/EntityIsNotRetainedByOwnerException.cs.meta +11 -0
  123. package/Core/Entity/Exceptions.meta +8 -0
  124. package/Core/Entity/IAERC.cs +34 -0
  125. package/Core/Entity/IAERC.cs.meta +11 -0
  126. package/Core/Entity/IEntity.cs +85 -0
  127. package/Core/Entity/IEntity.cs.meta +11 -0
  128. package/{Scripts/Blueprints/BlueprintBehaviourBase.cs → Core/Entity/SafeAERC.cs} +28 -21
  129. package/Core/Entity/SafeAERC.cs.meta +11 -0
  130. package/Core/Entity/UnsafeAERC.cs +53 -0
  131. package/Core/Entity/UnsafeAERC.cs.meta +11 -0
  132. package/Core/Entity.meta +8 -0
  133. package/Core/EntityIndex/AbstractEntityIndex.cs +141 -0
  134. package/Core/EntityIndex/AbstractEntityIndex.cs.meta +11 -0
  135. package/Core/EntityIndex/EntityIndex.cs +156 -0
  136. package/Core/EntityIndex/EntityIndex.cs.meta +11 -0
  137. package/Core/EntityIndex/EntityIndexException.cs +35 -0
  138. package/Core/EntityIndex/EntityIndexException.cs.meta +11 -0
  139. package/Core/EntityIndex/IEntityIndex.cs +35 -0
  140. package/Core/EntityIndex/IEntityIndex.cs.meta +11 -0
  141. package/Core/EntityIndex/PrimaryEntityIndex.cs +146 -0
  142. package/Core/EntityIndex/PrimaryEntityIndex.cs.meta +11 -0
  143. package/Core/EntityIndex.meta +8 -0
  144. package/Core/Exceptions/IndexOutOfLookupRangeException.cs +38 -0
  145. package/Core/Exceptions/IndexOutOfLookupRangeException.cs.meta +11 -0
  146. package/Core/Exceptions.meta +8 -0
  147. package/Core/Extensions/CollectionExtension.cs +105 -0
  148. package/Core/Extensions/CollectionExtension.cs.meta +11 -0
  149. package/Core/Extensions/SingleEntityException.cs +37 -0
  150. package/Core/Extensions/SingleEntityException.cs.meta +11 -0
  151. package/Core/Extensions/StringExtensions.cs +138 -0
  152. package/Core/Extensions/StringExtensions.cs.meta +11 -0
  153. package/Core/Extensions/TypeExtensions.cs +49 -0
  154. package/Core/Extensions/TypeExtensions.cs.meta +11 -0
  155. package/Core/Extensions.meta +8 -0
  156. package/Core/Group/Delegates/GroupChanged.cs +32 -0
  157. package/Core/Group/Delegates/GroupChanged.cs.meta +11 -0
  158. package/Core/Group/Delegates/GroupUpdated.cs +33 -0
  159. package/Core/Group/Delegates/GroupUpdated.cs.meta +11 -0
  160. package/Core/Group/Delegates.meta +8 -0
  161. package/Core/Group/Group.cs +333 -0
  162. package/Core/Group/Group.cs.meta +11 -0
  163. package/Core/Group/GroupEvent.cs +34 -0
  164. package/Core/Group/GroupEvent.cs.meta +11 -0
  165. package/Core/Group/GroupSingleEntityException.cs +44 -0
  166. package/Core/Group/GroupSingleEntityException.cs.meta +11 -0
  167. package/{Scripts/Blueprints/BlueprintBase.cs → Core/Group/IGroup.cs} +34 -36
  168. package/Core/Group/IGroup.cs.meta +11 -0
  169. package/Core/Group.meta +8 -0
  170. package/Core/IComponent.cs +43 -0
  171. package/Core/IComponent.cs.meta +11 -0
  172. package/Core/Libs/ArrayDisposable.cs +17 -0
  173. package/Core/Libs/ArrayDisposable.cs.meta +11 -0
  174. package/Core/Libs/Collections/Bits.cs +61 -0
  175. package/Core/Libs/Collections/Bits.cs.meta +11 -0
  176. package/Core/Libs/Collections/ImmutableHashSet.cs +48 -0
  177. package/Core/Libs/Collections/ImmutableHashSet.cs.meta +11 -0
  178. package/Core/Libs/Collections/IntSet.cs +82 -0
  179. package/Core/Libs/Collections/IntSet.cs.meta +11 -0
  180. package/Core/Libs/Collections/IntStack.cs +41 -0
  181. package/Core/Libs/Collections/IntStack.cs.meta +11 -0
  182. package/Core/Libs/Collections.meta +8 -0
  183. package/Core/Libs/Event.cs +59 -0
  184. package/Core/Libs/Event.cs.meta +11 -0
  185. package/Core/Libs/GenId.cs +44 -0
  186. package/Core/Libs/GenId.cs.meta +11 -0
  187. package/Core/Libs/Pool.cs +13 -0
  188. package/Core/Libs/Pool.cs.meta +11 -0
  189. package/Core/Libs.meta +8 -0
  190. package/Core/Matcher/Interfaces/IAllOfMatcher.cs +34 -0
  191. package/Core/Matcher/Interfaces/IAllOfMatcher.cs.meta +11 -0
  192. package/Core/Matcher/Interfaces/IAnyOfMatcher.cs +34 -0
  193. package/Core/Matcher/Interfaces/IAnyOfMatcher.cs.meta +11 -0
  194. package/Core/Matcher/Interfaces/ICompoundMatcher.cs +35 -0
  195. package/Core/Matcher/Interfaces/ICompoundMatcher.cs.meta +11 -0
  196. package/Core/Matcher/Interfaces/IMatcher.cs +34 -0
  197. package/Core/Matcher/Interfaces/IMatcher.cs.meta +11 -0
  198. package/Core/Matcher/Interfaces/INoneOfMatcher.cs +32 -0
  199. package/Core/Matcher/Interfaces/INoneOfMatcher.cs.meta +11 -0
  200. package/Core/Matcher/Interfaces.meta +8 -0
  201. package/Core/Matcher/Matcher.cs +91 -0
  202. package/Core/Matcher/Matcher.cs.meta +11 -0
  203. package/Core/Matcher/MatcherEquals.cs +131 -0
  204. package/Core/Matcher/MatcherEquals.cs.meta +11 -0
  205. package/Core/Matcher/MatcherException.cs +36 -0
  206. package/Core/Matcher/MatcherException.cs.meta +11 -0
  207. package/Core/Matcher/MatcherStatic.cs +156 -0
  208. package/Core/Matcher/MatcherStatic.cs.meta +11 -0
  209. package/Core/Matcher/MatcherToString.cs +111 -0
  210. package/Core/Matcher/MatcherToString.cs.meta +11 -0
  211. package/Core/Matcher.meta +8 -0
  212. package/Core/ObjectPool.cs +56 -0
  213. package/Core/ObjectPool.cs.meta +11 -0
  214. package/Core/RuntimeConstants.cs +40 -0
  215. package/Core/RuntimeConstants.cs.meta +11 -0
  216. package/Core/Systems/CleanupReactiveSystem.cs +129 -0
  217. package/Core/Systems/CleanupReactiveSystem.cs.meta +11 -0
  218. package/Core/Systems/Commands/CommandFixedUpdateSystem.cs +12 -0
  219. package/Core/Systems/Commands/CommandFixedUpdateSystem.cs.meta +11 -0
  220. package/Core/Systems/Commands/CommandLateUpdateSystem.cs +12 -0
  221. package/Core/Systems/Commands/CommandLateUpdateSystem.cs.meta +11 -0
  222. package/Core/Systems/Commands/CommandSystem.cs +30 -0
  223. package/Core/Systems/Commands/CommandSystem.cs.meta +11 -0
  224. package/Core/Systems/Commands/CommandUpdateSystem.cs +12 -0
  225. package/Core/Systems/Commands/CommandUpdateSystem.cs.meta +11 -0
  226. package/Core/Systems/Commands/ForEachCommandFixedUpdateSystem.cs +22 -0
  227. package/Core/Systems/Commands/ForEachCommandFixedUpdateSystem.cs.meta +11 -0
  228. package/Core/Systems/Commands/ForEachCommandLateUpdateSystem.cs +22 -0
  229. package/Core/Systems/Commands/ForEachCommandLateUpdateSystem.cs.meta +11 -0
  230. package/Core/Systems/Commands/ForEachCommandUpdateSystem.cs +22 -0
  231. package/Core/Systems/Commands/ForEachCommandUpdateSystem.cs.meta +11 -0
  232. package/Core/Systems/Commands.meta +8 -0
  233. package/Core/Systems/ComponentReplacedReactiveSystem.cs +68 -0
  234. package/Core/Systems/ComponentReplacedReactiveSystem.cs.meta +11 -0
  235. package/Core/Systems/FixedReactiveSystem.cs +68 -0
  236. package/Core/Systems/FixedReactiveSystem.cs.meta +11 -0
  237. package/Core/Systems/Interfaces/ICleanupSystem.cs +38 -0
  238. package/Core/Systems/Interfaces/ICleanupSystem.cs.meta +11 -0
  239. package/Core/Systems/Interfaces/IFixedUpdateSystem.cs +38 -0
  240. package/Core/Systems/Interfaces/IFixedUpdateSystem.cs.meta +11 -0
  241. package/Core/Systems/Interfaces/IInitializeSystem.cs +38 -0
  242. package/Core/Systems/Interfaces/IInitializeSystem.cs.meta +11 -0
  243. package/Core/Systems/Interfaces/ILateUpdateSystem.cs +39 -0
  244. package/Core/Systems/Interfaces/ILateUpdateSystem.cs.meta +11 -0
  245. package/Core/Systems/Interfaces/IReactiveSystem.cs +49 -0
  246. package/Core/Systems/Interfaces/IReactiveSystem.cs.meta +11 -0
  247. package/Core/Systems/Interfaces/ISystem.cs +37 -0
  248. package/Core/Systems/Interfaces/ISystem.cs.meta +11 -0
  249. package/Core/Systems/Interfaces/ITearDownSystem.cs +38 -0
  250. package/Core/Systems/Interfaces/ITearDownSystem.cs.meta +11 -0
  251. package/Core/Systems/Interfaces/IUpdateSystem.cs +38 -0
  252. package/Core/Systems/Interfaces/IUpdateSystem.cs.meta +11 -0
  253. package/Core/Systems/Interfaces.meta +8 -0
  254. package/Core/Systems/ReactiveSystem.cs +129 -0
  255. package/Core/Systems/ReactiveSystem.cs.meta +11 -0
  256. package/Core/Systems/SlimReactiveSystem.cs +80 -0
  257. package/Core/Systems/SlimReactiveSystem.cs.meta +11 -0
  258. package/Core/Systems/Systems.cs +226 -0
  259. package/Core/Systems/Systems.cs.meta +11 -0
  260. package/Core/Systems.meta +8 -0
  261. package/Core/Tools/ArrayTools.cs +117 -0
  262. package/Core/Tools/ArrayTools.cs.meta +11 -0
  263. package/Core/Tools/DictionaryTools.cs +143 -0
  264. package/Core/Tools/DictionaryTools.cs.meta +11 -0
  265. package/Core/Tools/ListTools.cs +66 -0
  266. package/Core/Tools/ListTools.cs.meta +11 -0
  267. package/Core/Tools/Native/NoAllocUtils.cs +53 -0
  268. package/Core/Tools/Native/NoAllocUtils.cs.meta +11 -0
  269. package/Core/Tools/Native.meta +8 -0
  270. package/Core/Tools.meta +8 -0
  271. package/{Scripts/Blueprints/Editor.meta → Core.meta} +1 -1
  272. package/Plugins/EntitasRedux.Command.Generator.dll +0 -0
  273. package/Plugins/EntitasRedux.Core.Generator.dll +0 -0
  274. package/README.md +2 -8
  275. package/{Scripts → Runtime}/Editor/EntitasRedux.Editor.asmdef +2 -1
  276. package/{Scripts → Runtime}/EntitasRedux.asmdef +4 -1
  277. package/{Scripts → Runtime}/VisualDebugging/Editor/EntitasRedux.VisualDebugging.Editor.asmdef +3 -3
  278. package/{Scripts → Runtime}/VisualDebugging/EntitasRedux.VisualDebugging.asmdef +2 -1
  279. package/package.json +2 -2
  280. package/Plugins/EntitasRedux.Core.Libs.dll +0 -0
  281. package/Plugins/EntitasRedux.Core.Libs.dll.meta +0 -75
  282. package/Plugins/EntitasRedux.Core.dll +0 -0
  283. package/Plugins/EntitasRedux.Core.dll.meta +0 -75
  284. package/Scripts/Blueprints/AssemblyInfo.cs +0 -39
  285. package/Scripts/Blueprints/Editor/AssemblyInfo.cs +0 -35
  286. package/Scripts/Blueprints/Editor/AssemblyInfo.cs.meta +0 -11
  287. package/Scripts/Blueprints/Editor/BlueprintBaseInspector.cs +0 -67
  288. package/Scripts/Blueprints/Editor/BlueprintBaseInspector.cs.meta +0 -11
  289. package/Scripts/Blueprints/Editor/BlueprintBehaviourBaseInspector.cs +0 -67
  290. package/Scripts/Blueprints/Editor/BlueprintBehaviourBaseInspector.cs.meta +0 -11
  291. package/Scripts/Blueprints/Editor/BlueprintInspector.cs +0 -268
  292. package/Scripts/Blueprints/Editor/BlueprintInspector.cs.meta +0 -11
  293. package/Scripts/Blueprints/Editor/EntitasRedux.Blueprints.Editor.asmdef +0 -20
  294. package/Scripts/Blueprints/Editor/EntitasRedux.Blueprints.Editor.asmdef.meta +0 -7
  295. /package/{Scripts → Runtime}/AssemblyInfo.cs +0 -0
  296. /package/{Scripts → Runtime}/AssemblyInfo.cs.meta +0 -0
  297. /package/{Scripts → Runtime}/Core/Utils/UnsubscribeEvent.cs +0 -0
  298. /package/{Scripts → Runtime}/Core/Utils/UnsubscribeEvent.cs.meta +0 -0
  299. /package/{Scripts → Runtime}/Core/Utils/UnsubscribeEventExtensions.cs +0 -0
  300. /package/{Scripts → Runtime}/Core/Utils/UnsubscribeEventExtensions.cs.meta +0 -0
  301. /package/{Scripts → Runtime}/Core/Utils.meta +0 -0
  302. /package/{Scripts → Runtime}/Core/View/IEntityHashHolder.cs +0 -0
  303. /package/{Scripts → Runtime}/Core/View/IEntityHashHolder.cs.meta +0 -0
  304. /package/{Scripts → Runtime}/Core/View/ILinkable.cs +0 -0
  305. /package/{Scripts → Runtime}/Core/View/ILinkable.cs.meta +0 -0
  306. /package/{Scripts → Runtime}/Core/View/Impls/EntityHashHolder.cs +0 -0
  307. /package/{Scripts → Runtime}/Core/View/Impls/EntityHashHolder.cs.meta +0 -0
  308. /package/{Scripts → Runtime}/Core/View/Impls/LinkableView.Editor.cs +0 -0
  309. /package/{Scripts → Runtime}/Core/View/Impls/LinkableView.Editor.cs.meta +0 -0
  310. /package/{Scripts → Runtime}/Core/View/Impls/LinkableView.cs +0 -0
  311. /package/{Scripts → Runtime}/Core/View/Impls/LinkableView.cs.meta +0 -0
  312. /package/{Scripts → Runtime}/Core/View/Impls.meta +0 -0
  313. /package/{Scripts → Runtime}/Core/View.meta +0 -0
  314. /package/{Scripts → Runtime}/Core.meta +0 -0
  315. /package/{Scripts → Runtime}/Editor/AssemblyInfo.cs +0 -0
  316. /package/{Scripts → Runtime}/Editor/AssemblyInfo.cs.meta +0 -0
  317. /package/{Scripts → Runtime}/Editor/CreateScriptMenuItems.cs +0 -0
  318. /package/{Scripts → Runtime}/Editor/CreateScriptMenuItems.cs.meta +0 -0
  319. /package/{Scripts → Runtime}/Editor/EntitasRedux.Editor.asmdef.meta +0 -0
  320. /package/{Scripts → Runtime}/Editor/EntitasReduxStyles.cs +0 -0
  321. /package/{Scripts → Runtime}/Editor/EntitasReduxStyles.cs.meta +0 -0
  322. /package/{Scripts → Runtime}/Editor/Extensions/ColorExtensions.cs +0 -0
  323. /package/{Scripts → Runtime}/Editor/Extensions/ColorExtensions.cs.meta +0 -0
  324. /package/{Scripts → Runtime}/Editor/Extensions/PublicMemberInfoExtensions.cs +0 -0
  325. /package/{Scripts → Runtime}/Editor/Extensions/PublicMemberInfoExtensions.cs.meta +0 -0
  326. /package/{Scripts → Runtime}/Editor/Extensions/SerializationTypeExtensions.cs +0 -0
  327. /package/{Scripts → Runtime}/Editor/Extensions/SerializationTypeExtensions.cs.meta +0 -0
  328. /package/{Scripts → Runtime}/Editor/Extensions/StringExtensions.cs +0 -0
  329. /package/{Scripts → Runtime}/Editor/Extensions/StringExtensions.cs.meta +0 -0
  330. /package/{Scripts → Runtime}/Editor/Extensions/TypeExtensions.cs +0 -0
  331. /package/{Scripts → Runtime}/Editor/Extensions/TypeExtensions.cs.meta +0 -0
  332. /package/{Scripts → Runtime}/Editor/Extensions.meta +0 -0
  333. /package/{Scripts → Runtime}/Editor/Images/EntitasContextErrorHierarchyIcon.png +0 -0
  334. /package/{Scripts → Runtime}/Editor/Images/EntitasContextErrorHierarchyIcon.png.meta +0 -0
  335. /package/{Scripts → Runtime}/Editor/Images/EntitasContextHierarchyIcon.png +0 -0
  336. /package/{Scripts → Runtime}/Editor/Images/EntitasContextHierarchyIcon.png.meta +0 -0
  337. /package/{Scripts → Runtime}/Editor/Images/EntitasEntityErrorHierarchyIcon.png +0 -0
  338. /package/{Scripts → Runtime}/Editor/Images/EntitasEntityErrorHierarchyIcon.png.meta +0 -0
  339. /package/{Scripts → Runtime}/Editor/Images/EntitasEntityHierarchyIcon.png +0 -0
  340. /package/{Scripts → Runtime}/Editor/Images/EntitasEntityHierarchyIcon.png.meta +0 -0
  341. /package/{Scripts → Runtime}/Editor/Images/EntitasEntityLinkHierarchyIcon.png +0 -0
  342. /package/{Scripts → Runtime}/Editor/Images/EntitasEntityLinkHierarchyIcon.png.meta +0 -0
  343. /package/{Scripts → Runtime}/Editor/Images/EntitasEntityLinkWarnHierarchyIcon.png +0 -0
  344. /package/{Scripts → Runtime}/Editor/Images/EntitasEntityLinkWarnHierarchyIcon.png.meta +0 -0
  345. /package/{Scripts → Runtime}/Editor/Images/EntitasHeader.png +0 -0
  346. /package/{Scripts → Runtime}/Editor/Images/EntitasHeader.png.meta +0 -0
  347. /package/{Scripts → Runtime}/Editor/Images/EntitasSystemsHierarchyIcon.png +0 -0
  348. /package/{Scripts → Runtime}/Editor/Images/EntitasSystemsHierarchyIcon.png.meta +0 -0
  349. /package/{Scripts → Runtime}/Editor/Images/EntitasSystemsWarnHierarchyIcon.png +0 -0
  350. /package/{Scripts → Runtime}/Editor/Images/EntitasSystemsWarnHierarchyIcon.png.meta +0 -0
  351. /package/{Scripts → Runtime}/Editor/Images.meta +0 -0
  352. /package/{Scripts → Runtime}/Editor/Inspector/DefaultInstanceCreator/DefaultArrayCreator.cs +0 -0
  353. /package/{Scripts → Runtime}/Editor/Inspector/DefaultInstanceCreator/DefaultArrayCreator.cs.meta +0 -0
  354. /package/{Scripts → Runtime}/Editor/Inspector/DefaultInstanceCreator/DefaultStringCreator.cs +0 -0
  355. /package/{Scripts → Runtime}/Editor/Inspector/DefaultInstanceCreator/DefaultStringCreator.cs.meta +0 -0
  356. /package/{Scripts → Runtime}/Editor/Inspector/DefaultInstanceCreator/IDefaultInstanceCreator.cs +0 -0
  357. /package/{Scripts → Runtime}/Editor/Inspector/DefaultInstanceCreator/IDefaultInstanceCreator.cs.meta +0 -0
  358. /package/{Scripts → Runtime}/Editor/Inspector/DefaultInstanceCreator.meta +0 -0
  359. /package/{Scripts → Runtime}/Editor/Inspector/Entity/EntityDrawer.cs +0 -0
  360. /package/{Scripts → Runtime}/Editor/Inspector/Entity/EntityDrawer.cs.meta +0 -0
  361. /package/{Scripts → Runtime}/Editor/Inspector/Entity/EntityInspector.cs +0 -0
  362. /package/{Scripts → Runtime}/Editor/Inspector/Entity/EntityInspector.cs.meta +0 -0
  363. /package/{Scripts → Runtime}/Editor/Inspector/Entity.meta +0 -0
  364. /package/{Scripts → Runtime}/Editor/Inspector/IComponentDrawer.cs +0 -0
  365. /package/{Scripts → Runtime}/Editor/Inspector/IComponentDrawer.cs.meta +0 -0
  366. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/AnimationCurveTypeDrawer.cs +0 -0
  367. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/AnimationCurveTypeDrawer.cs.meta +0 -0
  368. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/ArrayTypeDrawer.cs +0 -0
  369. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/ArrayTypeDrawer.cs.meta +0 -0
  370. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/BoolTypeDrawer.cs +0 -0
  371. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/BoolTypeDrawer.cs.meta +0 -0
  372. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/BoundsTypeDrawer.cs +0 -0
  373. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/BoundsTypeDrawer.cs.meta +0 -0
  374. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/CharTypeDrawer.cs +0 -0
  375. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/CharTypeDrawer.cs.meta +0 -0
  376. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/ColorTypeDrawer.cs +0 -0
  377. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/ColorTypeDrawer.cs.meta +0 -0
  378. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/DateTimeTypeDrawer.cs +0 -0
  379. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/DateTimeTypeDrawer.cs.meta +0 -0
  380. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/DictionaryTypeDrawer.cs +0 -0
  381. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/DictionaryTypeDrawer.cs.meta +0 -0
  382. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/DoubleTypeDrawer.cs +0 -0
  383. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/DoubleTypeDrawer.cs.meta +0 -0
  384. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/EnumTypeDrawer.cs +0 -0
  385. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/EnumTypeDrawer.cs.meta +0 -0
  386. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/FloatTypeDrawer.cs +0 -0
  387. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/FloatTypeDrawer.cs.meta +0 -0
  388. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/HashSetTypeDrawer.cs +0 -0
  389. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/HashSetTypeDrawer.cs.meta +0 -0
  390. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/ITypeDrawer.cs +0 -0
  391. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/ITypeDrawer.cs.meta +0 -0
  392. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/IntTypeDrawer.cs +0 -0
  393. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/IntTypeDrawer.cs.meta +0 -0
  394. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/ListTypeDrawer.cs +0 -0
  395. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/ListTypeDrawer.cs.meta +0 -0
  396. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/RectTypeDrawer.cs +0 -0
  397. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/RectTypeDrawer.cs.meta +0 -0
  398. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/StringTypeDrawer.cs +0 -0
  399. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/StringTypeDrawer.cs.meta +0 -0
  400. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/UnityObjectTypeDrawer.cs +0 -0
  401. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/UnityObjectTypeDrawer.cs.meta +0 -0
  402. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/Vector2TypeDrawer.cs +0 -0
  403. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/Vector2TypeDrawer.cs.meta +0 -0
  404. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/Vector3TypeDrawer.cs +0 -0
  405. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/Vector3TypeDrawer.cs.meta +0 -0
  406. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/Vector4TypeDrawer.cs +0 -0
  407. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer/Vector4TypeDrawer.cs.meta +0 -0
  408. /package/{Scripts → Runtime}/Editor/Inspector/TypeDrawer.meta +0 -0
  409. /package/{Scripts → Runtime}/Editor/Inspector.meta +0 -0
  410. /package/{Scripts → Runtime}/Editor/MenuItems.cs +0 -0
  411. /package/{Scripts → Runtime}/Editor/MenuItems.cs.meta +0 -0
  412. /package/{Scripts → Runtime}/Editor/PlayModeHelper.cs +0 -0
  413. /package/{Scripts → Runtime}/Editor/PlayModeHelper.cs.meta +0 -0
  414. /package/{Scripts → Runtime}/Editor/Reflection/AttributeInfo.cs +0 -0
  415. /package/{Scripts → Runtime}/Editor/Reflection/AttributeInfo.cs.meta +0 -0
  416. /package/{Scripts → Runtime}/Editor/Reflection/PublicMemberInfo.cs +0 -0
  417. /package/{Scripts → Runtime}/Editor/Reflection/PublicMemberInfo.cs.meta +0 -0
  418. /package/{Scripts → Runtime}/Editor/Reflection.meta +0 -0
  419. /package/{Scripts → Runtime}/Editor/ScriptTemplates/CleanupSystem.txt +0 -0
  420. /package/{Scripts → Runtime}/Editor/ScriptTemplates/CleanupSystem.txt.meta +0 -0
  421. /package/{Scripts → Runtime}/Editor/ScriptTemplates/Component.txt +0 -0
  422. /package/{Scripts → Runtime}/Editor/ScriptTemplates/Component.txt.meta +0 -0
  423. /package/{Scripts → Runtime}/Editor/ScriptTemplates/FixedUpdateSystem.txt +0 -0
  424. /package/{Scripts → Runtime}/Editor/ScriptTemplates/FixedUpdateSystem.txt.meta +0 -0
  425. /package/{Scripts → Runtime}/Editor/ScriptTemplates/InitializeSystem.txt +0 -0
  426. /package/{Scripts → Runtime}/Editor/ScriptTemplates/InitializeSystem.txt.meta +0 -0
  427. /package/{Scripts → Runtime}/Editor/ScriptTemplates/LateUpdateSystem.txt +0 -0
  428. /package/{Scripts → Runtime}/Editor/ScriptTemplates/LateUpdateSystem.txt.meta +0 -0
  429. /package/{Scripts → Runtime}/Editor/ScriptTemplates/ReactiveSystem.txt +0 -0
  430. /package/{Scripts → Runtime}/Editor/ScriptTemplates/ReactiveSystem.txt.meta +0 -0
  431. /package/{Scripts → Runtime}/Editor/ScriptTemplates/UpdateSystem.txt +0 -0
  432. /package/{Scripts → Runtime}/Editor/ScriptTemplates/UpdateSystem.txt.meta +0 -0
  433. /package/{Scripts → Runtime}/Editor/ScriptTemplates.meta +0 -0
  434. /package/{Scripts → Runtime}/Editor/Tools/ColorTools.cs +0 -0
  435. /package/{Scripts → Runtime}/Editor/Tools/ColorTools.cs.meta +0 -0
  436. /package/{Scripts → Runtime}/Editor/Tools/EditorGUILayoutTools.cs +0 -0
  437. /package/{Scripts → Runtime}/Editor/Tools/EditorGUILayoutTools.cs.meta +0 -0
  438. /package/{Scripts → Runtime}/Editor/Tools/PlayerSettingsTools.cs +0 -0
  439. /package/{Scripts → Runtime}/Editor/Tools/PlayerSettingsTools.cs.meta +0 -0
  440. /package/{Scripts → Runtime}/Editor/Tools/PreferenceTools.cs +0 -0
  441. /package/{Scripts → Runtime}/Editor/Tools/PreferenceTools.cs.meta +0 -0
  442. /package/{Scripts → Runtime}/Editor/Tools/RefactorModeTools.cs +0 -0
  443. /package/{Scripts → Runtime}/Editor/Tools/RefactorModeTools.cs.meta +0 -0
  444. /package/{Scripts → Runtime}/Editor/Tools/ReflectionTools.cs +0 -0
  445. /package/{Scripts → Runtime}/Editor/Tools/ReflectionTools.cs.meta +0 -0
  446. /package/{Scripts → Runtime}/Editor/Tools/ScriptTools.cs +0 -0
  447. /package/{Scripts → Runtime}/Editor/Tools/ScriptTools.cs.meta +0 -0
  448. /package/{Scripts → Runtime}/Editor/Tools/SerializationTools.cs +0 -0
  449. /package/{Scripts → Runtime}/Editor/Tools/SerializationTools.cs.meta +0 -0
  450. /package/{Scripts → Runtime}/Editor/Tools.meta +0 -0
  451. /package/{Scripts → Runtime}/Editor/Window/AboutWindow.cs +0 -0
  452. /package/{Scripts → Runtime}/Editor/Window/AboutWindow.cs.meta +0 -0
  453. /package/{Scripts → Runtime}/Editor/Window.meta +0 -0
  454. /package/{Scripts → Runtime}/Editor.meta +0 -0
  455. /package/{Scripts → Runtime}/EntitasRedux.asmdef.meta +0 -0
  456. /package/{Scripts → Runtime}/Entity/EntityBehaviour.cs +0 -0
  457. /package/{Scripts → Runtime}/Entity/EntityBehaviour.cs.meta +0 -0
  458. /package/{Scripts → Runtime}/Entity.meta +0 -0
  459. /package/{Scripts → Runtime}/EntityLink.cs +0 -0
  460. /package/{Scripts → Runtime}/EntityLink.cs.meta +0 -0
  461. /package/{Scripts → Runtime}/Extensions/EntityLinkExtension.cs +0 -0
  462. /package/{Scripts → Runtime}/Extensions/EntityLinkExtension.cs.meta +0 -0
  463. /package/{Scripts → Runtime}/Extensions.meta +0 -0
  464. /package/{Scripts → Runtime}/VersionConstants.cs +0 -0
  465. /package/{Scripts → Runtime}/VersionConstants.cs.meta +0 -0
  466. /package/{Scripts → Runtime}/VisualDebugging/AssemblyInfo.cs +0 -0
  467. /package/{Scripts → Runtime}/VisualDebugging/AssemblyInfo.cs.meta +0 -0
  468. /package/{Scripts → Runtime}/VisualDebugging/ContextObserver/ContextObserver.cs +0 -0
  469. /package/{Scripts → Runtime}/VisualDebugging/ContextObserver/ContextObserver.cs.meta +0 -0
  470. /package/{Scripts → Runtime}/VisualDebugging/ContextObserver/ContextObserverBehaviour.cs +0 -0
  471. /package/{Scripts → Runtime}/VisualDebugging/ContextObserver/ContextObserverBehaviour.cs.meta +0 -0
  472. /package/{Scripts → Runtime}/VisualDebugging/ContextObserver/ContextObserverExtension.cs +0 -0
  473. /package/{Scripts → Runtime}/VisualDebugging/ContextObserver/ContextObserverExtension.cs.meta +0 -0
  474. /package/{Scripts → Runtime}/VisualDebugging/ContextObserver.meta +0 -0
  475. /package/{Scripts → Runtime}/VisualDebugging/DebugSystems/AvgResetInterval.cs +0 -0
  476. /package/{Scripts → Runtime}/VisualDebugging/DebugSystems/AvgResetInterval.cs.meta +0 -0
  477. /package/{Scripts → Runtime}/VisualDebugging/DebugSystems/DebugSystems.cs +0 -0
  478. /package/{Scripts → Runtime}/VisualDebugging/DebugSystems/DebugSystems.cs.meta +0 -0
  479. /package/{Scripts → Runtime}/VisualDebugging/DebugSystems/DebugSystemsBehaviour.cs +0 -0
  480. /package/{Scripts → Runtime}/VisualDebugging/DebugSystems/DebugSystemsBehaviour.cs.meta +0 -0
  481. /package/{Scripts → Runtime}/VisualDebugging/DebugSystems/SystemInfo.cs +0 -0
  482. /package/{Scripts → Runtime}/VisualDebugging/DebugSystems/SystemInfo.cs.meta +0 -0
  483. /package/{Scripts → Runtime}/VisualDebugging/DebugSystems.meta +0 -0
  484. /package/{Scripts → Runtime}/VisualDebugging/Editor/AssemblyInfo.cs +0 -0
  485. /package/{Scripts → Runtime}/VisualDebugging/Editor/AssemblyInfo.cs.meta +0 -0
  486. /package/{Scripts → Runtime}/VisualDebugging/Editor/ContextObserver/ContextObserverInspector.cs +0 -0
  487. /package/{Scripts → Runtime}/VisualDebugging/Editor/ContextObserver/ContextObserverInspector.cs.meta +0 -0
  488. /package/{Scripts → Runtime}/VisualDebugging/Editor/ContextObserver.meta +0 -0
  489. /package/{Scripts → Runtime}/VisualDebugging/Editor/DebugSystems/DebugSystemsBehaviourInspector.cs +0 -0
  490. /package/{Scripts → Runtime}/VisualDebugging/Editor/DebugSystems/DebugSystemsBehaviourInspector.cs.meta +0 -0
  491. /package/{Scripts → Runtime}/VisualDebugging/Editor/DebugSystems.meta +0 -0
  492. /package/{Scripts → Runtime}/VisualDebugging/Editor/EntitasHierarchyIcon.cs +0 -0
  493. /package/{Scripts → Runtime}/VisualDebugging/Editor/EntitasHierarchyIcon.cs.meta +0 -0
  494. /package/{Scripts → Runtime}/VisualDebugging/Editor/EntitasRedux.VisualDebugging.Editor.asmdef.meta +0 -0
  495. /package/{Scripts → Runtime}/VisualDebugging/Editor/EntitasStats.cs +0 -0
  496. /package/{Scripts → Runtime}/VisualDebugging/Editor/EntitasStats.cs.meta +0 -0
  497. /package/{Scripts → Runtime}/VisualDebugging/Editor/EntityLinkInspector.cs +0 -0
  498. /package/{Scripts → Runtime}/VisualDebugging/Editor/EntityLinkInspector.cs.meta +0 -0
  499. /package/{Scripts → Runtime}/VisualDebugging/Editor/Graph.cs +0 -0
  500. /package/{Scripts → Runtime}/VisualDebugging/Editor/Graph.cs.meta +0 -0
  501. /package/{Scripts → Runtime}/VisualDebugging/Editor/VisualDebugStyles.cs +0 -0
  502. /package/{Scripts → Runtime}/VisualDebugging/Editor/VisualDebugStyles.cs.meta +0 -0
  503. /package/{Scripts → Runtime}/VisualDebugging/Editor/VisualDebuggingEntitasExtension.cs +0 -0
  504. /package/{Scripts → Runtime}/VisualDebugging/Editor/VisualDebuggingEntitasExtension.cs.meta +0 -0
  505. /package/{Scripts → Runtime}/VisualDebugging/Editor/VisualDebuggingPreferences.cs +0 -0
  506. /package/{Scripts → Runtime}/VisualDebugging/Editor/VisualDebuggingPreferences.cs.meta +0 -0
  507. /package/{Scripts → Runtime}/VisualDebugging/Editor.meta +0 -0
  508. /package/{Scripts → Runtime}/VisualDebugging/EntitasRedux.VisualDebugging.asmdef.meta +0 -0
  509. /package/{Scripts → Runtime}/VisualDebugging/Extensions/GameObjectDestroyExtensions.cs +0 -0
  510. /package/{Scripts → Runtime}/VisualDebugging/Extensions/GameObjectDestroyExtensions.cs.meta +0 -0
  511. /package/{Scripts → Runtime}/VisualDebugging/Extensions.meta +0 -0
  512. /package/{Scripts → Runtime}/VisualDebugging.meta +0 -0
  513. /package/{Scripts.meta → Runtime.meta} +0 -0
package/CHANGELOG.md CHANGED
@@ -6,6 +6,22 @@ All notable changes to this project will be documented in this file.
6
6
 
7
7
  ---
8
8
 
9
+ ## [3.1.1](https://gitlab.com/elestrago-pkg/entitas-redux/-/tags/3.1.1)
10
+
11
+ ### Fixes
12
+
13
+ - Try to make package visible in Unity package manager
14
+
15
+ ---
16
+
17
+ ## [v3.1.0](https://gitlab.com/elestrago-pkg/entitas-redux/-/tags/v3.1.0)
18
+
19
+ ### Changes
20
+
21
+ - Create custom event class for add or remove event listeners
22
+
23
+ ---
24
+
9
25
  ## [v3.0.13](https://gitlab.com/elestrago-pkg/entitas-redux/-/tags/v3.0.13)
10
26
 
11
27
  ### Fixes
@@ -0,0 +1,45 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ using System;
27
+
28
+ namespace JCMG.EntitasRedux
29
+ {
30
+ [AttributeUsage(
31
+ AttributeTargets.Interface |
32
+ AttributeTargets.Class |
33
+ AttributeTargets.Struct |
34
+ AttributeTargets.Enum,
35
+ AllowMultiple = true)]
36
+ public class CleanupAttribute : Attribute
37
+ {
38
+ public CleanupMode CleanupMode { get; }
39
+
40
+ public CleanupAttribute(CleanupMode cleanupMode)
41
+ {
42
+ CleanupMode = cleanupMode;
43
+ }
44
+ }
45
+ }
@@ -1,5 +1,5 @@
1
1
  fileFormatVersion: 2
2
- guid: 96ab5c3af01f78543932ef7e40a2e1a8
2
+ guid: 91dae1745286915dda4595cbb10e24d3
3
3
  MonoImporter:
4
4
  externalObjects: {}
5
5
  serializedVersion: 2
@@ -0,0 +1,33 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ namespace JCMG.EntitasRedux
27
+ {
28
+ public enum CleanupMode
29
+ {
30
+ RemoveComponent,
31
+ DestroyEntity
32
+ }
33
+ }
@@ -1,5 +1,5 @@
1
1
  fileFormatVersion: 2
2
- guid: 01477d22f219f544a93cb555d4d38341
2
+ guid: fc4f68f8a5df0c193bf2a47e939422dc
3
3
  MonoImporter:
4
4
  externalObjects: {}
5
5
  serializedVersion: 2
@@ -0,0 +1,42 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ using System;
27
+
28
+ namespace JCMG.EntitasRedux
29
+ {
30
+ [AttributeUsage(
31
+ AttributeTargets.Interface | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum,
32
+ AllowMultiple = true)]
33
+ public abstract class ContextAttribute : Attribute
34
+ {
35
+ public readonly string contextName;
36
+
37
+ public ContextAttribute(string contextName)
38
+ {
39
+ this.contextName = contextName;
40
+ }
41
+ }
42
+ }
@@ -1,5 +1,5 @@
1
1
  fileFormatVersion: 2
2
- guid: 5fe655a458ea1664b8664f67178b2b1a
2
+ guid: edcfab57e15f603eabb6585523b813a8
3
3
  MonoImporter:
4
4
  externalObjects: {}
5
5
  serializedVersion: 2
@@ -0,0 +1,40 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ using System;
27
+
28
+ namespace JCMG.EntitasRedux
29
+ {
30
+ [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Class)]
31
+ public sealed class CustomEntityIndexAttribute : Attribute
32
+ {
33
+ public readonly Type contextType;
34
+
35
+ public CustomEntityIndexAttribute(Type contextType)
36
+ {
37
+ this.contextType = contextType;
38
+ }
39
+ }
40
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: 6aacfc824a465bcf3bc171288df79748
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -0,0 +1,36 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ using System;
27
+ using System.Diagnostics;
28
+
29
+ namespace JCMG.EntitasRedux
30
+ {
31
+ [Conditional("UNITY_EDITOR")]
32
+ [AttributeUsage(AttributeTargets.Class)]
33
+ public class DontDrawComponentAttribute : Attribute
34
+ {
35
+ }
36
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: b0f05b2ddb1c27584a7aabfb4b88270f
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -0,0 +1,40 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ using System;
27
+
28
+ namespace JCMG.EntitasRedux
29
+ {
30
+ [AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum)]
31
+ public class DontGenerateAttribute : Attribute
32
+ {
33
+ public readonly bool generateIndex;
34
+
35
+ public DontGenerateAttribute(bool generateIndex = true)
36
+ {
37
+ this.generateIndex = generateIndex;
38
+ }
39
+ }
40
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: 6ec05ca8a2b49a99cbc5043f84d53179
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -0,0 +1,39 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ using System;
27
+
28
+ namespace JCMG.EntitasRedux
29
+ {
30
+ public abstract class AbstractEntityIndexAttribute : Attribute
31
+ {
32
+ public readonly EntityIndexType entityIndexType;
33
+
34
+ protected AbstractEntityIndexAttribute(EntityIndexType entityIndexType)
35
+ {
36
+ this.entityIndexType = entityIndexType;
37
+ }
38
+ }
39
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: fe513a1bc10f316daa65880e859187c7
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -0,0 +1,37 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ using System;
27
+
28
+ namespace JCMG.EntitasRedux
29
+ {
30
+ [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Class)]
31
+ public sealed class EntityIndexAttribute : AbstractEntityIndexAttribute
32
+ {
33
+ public EntityIndexAttribute() : base(EntityIndexType.EntityIndex)
34
+ {
35
+ }
36
+ }
37
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: 5577dd5d2eee70c9e84ca9e3cd8a4928
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -0,0 +1,34 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ using System;
27
+
28
+ namespace JCMG.EntitasRedux
29
+ {
30
+ [AttributeUsage(AttributeTargets.Method)]
31
+ public class EntityIndexGetMethodAttribute : Attribute
32
+ {
33
+ }
34
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: 4000dccb1899e1f18909847f5241db0d
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -0,0 +1,33 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ namespace JCMG.EntitasRedux
27
+ {
28
+ public enum EntityIndexType
29
+ {
30
+ EntityIndex,
31
+ PrimaryEntityIndex
32
+ }
33
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: 613e4a40290ad9fe9a724ec5cec00c46
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -0,0 +1,37 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ using System;
27
+
28
+ namespace JCMG.EntitasRedux
29
+ {
30
+ [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Class)]
31
+ public sealed class PrimaryEntityIndexAttribute : AbstractEntityIndexAttribute
32
+ {
33
+ public PrimaryEntityIndexAttribute() : base(EntityIndexType.PrimaryEntityIndex)
34
+ {
35
+ }
36
+ }
37
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: 13fef57487e44c54686f6683a4a35ac5
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 071d31533ec3036e5a934671c9fd09a1
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,46 @@
1
+ /*
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2020 Jeff Campbell
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+ */
25
+
26
+ using System;
27
+
28
+ namespace JCMG.EntitasRedux
29
+ {
30
+ [AttributeUsage(
31
+ AttributeTargets.Interface | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum,
32
+ AllowMultiple = true)]
33
+ public class EventAttribute : Attribute
34
+ {
35
+ public readonly EventTarget eventTarget;
36
+ public readonly EventType eventType;
37
+ public readonly int priority;
38
+
39
+ public EventAttribute(EventTarget eventTarget, EventType eventType = EventType.Added, int priority = 0)
40
+ {
41
+ this.eventTarget = eventTarget;
42
+ this.eventType = eventType;
43
+ this.priority = priority;
44
+ }
45
+ }
46
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: 8807b34e9f55be38483543c822f5639f
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ namespace JCMG.EntitasRedux
2
+ {
3
+ public enum EventTarget
4
+ {
5
+ Any,
6
+ Self
7
+ }
8
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: cbfc6b6ce0e0b2f1c96dda13440592a7
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant: