611023acbc
Add SharedMapSystem.GetFilledTileCount ( #6562 )
...
* Add SharedMapSystem.GetFilledTileCount
* Update Robust.Shared/GameObjects/Systems/SharedMapSystem.Grid.cs
Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com >
---------
Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com >
2026-05-22 16:57:11 -04:00
8508801670
Check that [Virtual] is not used on sealed/abstract/static classes ( #6486 )
...
* Add exclusivity check for virtual + analyzer test
* Cleanup
---------
Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com >
2026-05-08 13:18:05 +02:00
Tayrtahn
46a56ce348
Version: 276.0.0
2026-04-30 16:29:08 -04:00
Tayrtahn
cd83f45fc8
Release notes
2026-04-30 16:28:08 -04:00
Tayrtahn and GitHub
5a931f368c
Add parent check debug assert to SharedContainerSystem.Insert ( #6532 )
...
Check for correct parent
2026-04-25 01:22:09 -04:00
Tayrtahn and GitHub
60d6114906
Fix SetCoordinates causing unexpected reparenting ( #6533 )
...
* Don't check for grid traversal when we already know the new parent
* Actually, we shouldn't ever need to check for grid traversal in SetCoordinates
2026-04-25 01:04:00 -04:00
Tayrtahn and GitHub
38f345f6fd
Fix bad cast syntax with IRobustCloneable field deltas ( #6536 )
...
Fix bad cast syntax with IRobustCloneable field deltas
2026-04-25 01:00:49 -04:00
Tayrtahn and GitHub
1666a3a704
Fix BUI EntitySystem injection ( #6515 )
...
* Disable injection when creating BUI instances (the constructor will take care of it)
* Comment
* Release note
2026-04-07 12:51:03 -04:00
Tayrtahn and GitHub
3c53379036
Report all error logs on TestPair dispose ( #6503 )
...
* Report all error logs on TestPair dispose
* Reduce, reuse, recycle
2026-04-05 21:05:51 -04:00
Tayrtahn
3136118b53
Version: 275.2.0
2026-03-29 00:06:32 -04:00
Tayrtahn
ecf409cd19
Release notes
2026-03-29 00:04:30 -04:00
Tayrtahn
a12555988a
Version: 275.1.0
2026-03-27 22:33:30 -04:00
Tayrtahn
6ca6843b18
Release notes
2026-03-27 22:32:56 -04:00
Tayrtahn
dad56301e1
Version: 275.0.0
2026-03-27 00:54:04 -04:00
Tayrtahn
b3bcfea73f
Release notes
2026-03-27 00:52:53 -04:00
Tayrtahn and GitHub
d2792926e5
Remove [Virtual] attributes from abstract/sealed classes ( #6482 )
...
Removed [Virtual] attributes that shouldn't be there
2026-03-24 23:41:58 -04:00
Tayrtahn
cc5d7503b3
Version: 274.0.0
2026-03-16 15:42:07 -04:00
Tayrtahn
a2657a730f
Release notes
2026-03-16 15:29:19 -04:00
Tayrtahn
d47614c8ae
Version: 273.0.0
2026-03-07 15:01:42 -05:00
Tayrtahn
d4a1f5ffb3
Release notes
2026-03-07 15:00:13 -05:00
Tayrtahn and GitHub
fcc2c01d01
Revert "Revert "Add analyzer & fixer to detect when proxy methods are not used (ProxyForAttribute)"" ( #6439 )
...
Revert "Revert "Add analyzer & fixer to detect when proxy methods are not use…"
This reverts commit 1af32c3129 .
2026-03-07 11:32:01 -05:00
Tayrtahn and GitHub
1af32c3129
Revert "Add analyzer & fixer to detect when proxy methods are not used (ProxyForAttribute)" ( #6430 )
...
Revert "Add analyzer & fixer to detect when proxy methods are not used (`Prox…"
This reverts commit db1d3054ac .
2026-02-27 08:46:58 -05:00
Tayrtahn and GitHub
db1d3054ac
Add analyzer & fixer to detect when proxy methods are not used (ProxyForAttribute) ( #6026 )
...
* Attribute, analyzer, and tests
* Add attribute to EntitySystem methods
* Code fixer for redundant method name
* Code fixer for proxy substitution
* Comments
* Improve error message when target method is not found
* Modify AddComp signature to match AddComponent (Component -> IComponent)
* Revert "Modify AddComp signature to match AddComponent (Component -> IComponent)"
This reverts commit 1939d11765 .
* Check that proxy and target have matching type constraints
* Reapply "Modify AddComp signature to match AddComponent (Component -> IComponent)"
This reverts commit a65ea71b9b .
Might as well include this, since the file needs to be changed anyway.
* Boost efficiency by only searching for proxy methods once.
Previously we searched with each method invocation.
This also lets us skip analysis on classes with no proxy methods available.
* Revert unrelated change
* Fine, I'll do it properly
* Misleading method name
* Preserve trivia when when replacing method
* Prevent flagging method calls on non-member variables
* Prevent flagging method calls on other classes
* Switch to new HasAttribute helper
* comment fix
* Switch ProxyMethod from struct to class
* Kill TryGetAttributeSyntax
* Move member owner check to helper
* Use helper for proxy method search
* meh
* A little bit of documentation never hurt anybody
* Test attributes
* Convert AnalyzeDeclaration from SyntaxNodeAction to OperationAction
* You can keep the comment though
2026-02-27 08:22:41 -05:00
Tayrtahn and GitHub
9c4dd7a5e7
Add entity ProtoId to spawn panel tooltip ( #6424 )
...
* Add entity ProtoId to spawn panel tooltip
* Add backup message for entities with no description
* Release notes
2026-02-22 15:23:48 -05:00
dd86bf980d
Add MeansDataDefinition support to DataDefinitionAnalyzer ( #5699 )
...
* Add MeansDataDefinition support to DataDefinitionAnalyzer
* Poke tests
* Fix violations in engine
* Fix more lacking partials
* Fix tests
---------
Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com >
2025-12-17 19:47:30 +01:00
d7abbad717
Add validation for DirtyField strings ( #5713 )
...
* Add ValidateMemberAttribute, analyzer and test
* Use attribute on DirtyFields methods
* Defer member lookup
* Additional test case
* Add support for collection types
* Poke tests
* Revert "Add support for collection types"
This reverts commit 2b8f5534bd .
* break, not continue
* Cheaper attribute check with AttributeHelper
* Clean up unused helper method
---------
Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com >
2025-12-17 19:32:34 +01:00
c1737a540f
Analyzer & Fixer for redundant Prototype type strings ( #5718 )
...
* Add Prototype analyzer
* Add Prototype fixer
* Early return after finding prototype attribute
* Add PrototypeEndsWithPrototypeRule diagnostic
* Oops. Uncomment parallelizable.
* Rework to ignore redundancy for non-literal string values
* Allow redundancy when removal would expose class name not ending in "Prototype"
* Promote PrototypeEndsWithPrototypeRule from warning to error, since it causes a runtime error.
* No need to get the symbol to get the class identifier
* Minor cleanup
* A little more cleanup
* More specific location for redundant name
* Refactor redundant name fixer so argument order is no longer important
* Add failing test
* Use symbol analysis to fix alias handling
* Oops! We have to go back to the previous syntax-based approach.
Now it's a hybrid.
Also fixed tests to not copy the prototype definitions.
---------
Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com >
2025-12-17 18:15:32 +01:00
Tayrtahn and GitHub
e771530de2
Mark AutoGenerateComponentStateAttribute fields as readonly (redo) ( #6129 )
...
* Mark AutoGenerateComponentStateAttribute fields as readonly
* Remove no-longer-valid test case
2025-08-05 00:48:36 -04:00
Tayrtahn and GitHub
ce3a5f6bfa
Revert "Mark AutoGenerateComponentStateAttribute fields as readonly ( #6126 )" ( #6128 )
...
This reverts commit 1cd802640a .
2025-08-04 18:32:54 -04:00
Tayrtahn and GitHub
1cd802640a
Mark AutoGenerateComponentStateAttribute fields as readonly ( #6126 )
2025-08-04 18:25:09 -04:00
63e383bb17
Fix NotYamlSerializable analyzer ignoring nullable structs ( #5934 )
...
Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com >
2025-08-02 19:25:48 +02:00
e316649fd1
Add a Select button to ProtoId VV editor ( #6097 )
...
* Add a Select button to ProtoId VV editor
* Changelog
* Fix ftl string name
---------
Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com >
2025-08-02 19:08:24 +02:00
Tayrtahn and GitHub
9ea51432d1
Un-hardcode EntitySpawnWindow's placement mode dropdown ( #5994 )
...
* Find PlacementModes by attribute
* Let modes specify priority
* Make some PlacementManager dependencies public so Content can use them
* Space out the priorities a bit more
* xmldoc for attribute
* Revert "xmldoc for attribute"
This reverts commit f1f0299c55 .
* Revert "Space out the priorities a bit more"
This reverts commit 549eac1eb2 .
* Revert "Make some PlacementManager dependencies public so Content can use them"
This reverts commit c060f6cb2d .
* Revert "Let modes specify priority"
This reverts commit f113b40c7f .
* Revert "Find PlacementModes by attribute"
This reverts commit 27efb6c5cf .
* Completely redo to use PlacementManager's mode dictionary
* Backwards compat
* Cache the value of AllModeNames
2025-07-22 22:14:53 +02:00
974c1e827d
Change a bunch of static Loc.GetString calls to be properly resolved ( #6010 )
...
* Add Loc shortcut to LocalizedCommands
* Fix static methods in commands
---------
Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com >
2025-07-22 20:33:43 +02:00
Tayrtahn and GitHub
3c48b24539
Cleanup prototype instantiation warnings in unit tests ( #6058 )
2025-07-22 20:32:49 +02:00
Tayrtahn and GitHub
6d9a4719a9
Validate VV EntProtoId values ( #6095 )
2025-07-22 19:30:01 +02:00
Tayrtahn and GitHub
bb57f82811
More informative logging for PVS deleted/uninitialized entity errors ( #6084 )
2025-07-22 12:33:18 +02:00
Tayrtahn and GitHub
dc3705e520
Add ForbidLiteral to IPrototypeManager methods ( #6066 )
...
* Add ForbidLiteral to IPrototypeManager methods
* Cleanup violations
2025-07-06 20:27:32 +02:00
Tayrtahn and GitHub
01f71ca55a
Remove prototype instantiation from AssetPassAudioMetadata ( #6059 )
2025-06-28 22:18:46 +02:00
Tayrtahn and GitHub
9dffd36319
Use non-generic TryComp to get MetaDataComponent in DebugAnchoringSystem ( #6051 )
2025-06-27 20:38:10 +02:00
Tayrtahn and GitHub
a45b72a1c5
IRobustCloneable and generator support ( #5692 )
...
* Add IRobustCloneable and check for it in compnet generator.
* Redo compnetgenerator support; add test
* Disconnect client at end of test
* Actually test for client entities
* Cleanup
* Cleanup 2
2025-06-27 20:37:43 +02:00
Tayrtahn and GitHub
4017e1f57e
Make some PlacementManager dependency fields public ( #6044 )
...
* Make some PlacementManager dependency fields public
* Revert "Make some PlacementManager dependency fields public"
This reverts commit 99fe37b502 .
* Now part of IPlacementManager
2025-06-23 22:48:25 +02:00
Tayrtahn and GitHub
9b2ef75762
Optimize DataDefinitionAnalyzer a bit ( #6035 )
...
* Skip fields/properties not in DataDefs
* Only check IsDataField once per field/property
* Remove pointless foreach loop
* Remove an extra IsDataDefinition check
* Revert unneeded changes from testing
* Revert "Remove pointless foreach loop"
This reverts commit f05d566904 .
* Restore analysis of multiple declarations
2025-06-21 01:15:59 +02:00
Tayrtahn and GitHub
196e59b7e4
Clean up all missing EntitySystem proxy method uses ( #6027 )
...
* Clean up all missing EntitySystem proxy method uses
* Restore comment
* Fix bad change that caused closure allocation
* tuple
* Revert "tuple"
This reverts commit 14581a40aa .
* Revert "Fix bad change that caused closure allocation"
This reverts commit 215b2559ed .
* Revert "Restore comment"
This reverts commit 4a47a36557 .
* Revert "Clean up all missing EntitySystem proxy method uses"
This reverts commit 3b1fe4ce7f .
* Redo with improved code fixer.
Let's see how it fares this time
2025-06-21 00:05:09 +02:00
Tayrtahn and GitHub
7765e71dca
Add tests for remaining DataDefinitionAnalyzer diagnostics ( #6034 )
...
* Add tests for partial datadefs and partial nested datadefs
* Add test for redundant datafield tag
* Blank lines upset me
2025-06-20 02:26:08 +02:00
Tayrtahn and GitHub
a74812ce5b
Make AddComp where clause consistent with AddComponent ( #6028 )
2025-06-19 10:21:13 +10:00
Tayrtahn and GitHub
a8227f7faa
Replace static logger call in FileDialogManager ( #6018 )
2025-06-13 23:20:23 +02:00
Tayrtahn and GitHub
5c48dcb211
Fix TabContainer.CurrentTab setter ( #6017 )
2025-06-12 00:31:03 +02:00
Tayrtahn and GitHub
343a34eac7
Fix warning CS0168 in EntityDeserializer ( #6013 )
...
* Fix warning CS0168 in EntityDeserializer
* Actually, why use try-catch just to rethrow anyway?
2025-06-09 00:04:03 +02:00
Tayrtahn and GitHub
bec3caa5da
Fix error when using tpto on a grid ( #5991 )
...
* Fix error when using tpto on a grid
* Calculate map coords outside of loop
2025-06-05 22:45:30 +10:00
Tayrtahn and GitHub
6672b7b1bd
Correct misleading error message in ShareMapSystem.OnParentChange ( #5992 )
2025-06-05 22:29:47 +10:00
Tayrtahn and GitHub
44ea2cd396
Implement IEquatable for ResolvedPathSpecifier and ResolvedCollectionSpecifier ( #5980 )
2025-06-01 18:10:55 +10:00
Tayrtahn and GitHub
c696466522
Remove ITileDefinition.ID ( #5982 )
2025-06-01 17:51:59 +10:00
6d46d3f4a5
Cleanup most warnings in unit tests ( #5946 )
...
* 2 warnings in JointDeletion_Test
* 1 warning in Collision_Test
* 2 warnings in Color_Test (deleted test of deprecated HCY color space)
* 1 warning in MapVelocity_Test
* 2 warnings in MapManager_Tests
* 2 warnings in MapPauseTests
* 1 warning in NetDisconnectMessageTest
* 1 warning in ContainerTests
* Suppress 1 warning in EntityEventBusTests.ComponentEvent
* 4 warnings in MapGridMap_Tests
* 1 warning in GridDeletion_Test
* Remove TryGetContainingContainer foolishness
---------
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com >
2025-05-29 00:12:58 +10:00
Tayrtahn and GitHub
50e06e43fa
Automatic Sawmill generation for UIControllers ( #5967 )
2025-05-29 00:06:55 +10:00
Tayrtahn and GitHub
e475cc7898
Cleanup warning in SpriteBoundsOverlay ( #5944 )
...
* Cleanup warning in SpriteBoundsOverlay
* Make better use of the primary constructor
2025-05-28 19:28:53 +10:00
Tayrtahn and GitHub
fa6bd8f7ba
Cleanup TypeSerializer Logger warnings ( #5966 )
2025-05-24 20:23:28 +02:00
Tayrtahn and GitHub
38ce48a83f
Cleanup 3 warnings in SharedContainerSystem ( #5949 )
...
* Cleanup 3 warnings in SharedContainerSystem
* Don't call Transform twice
2025-05-24 19:00:57 +02:00
Tayrtahn and GitHub
7b571dc80e
Fix 2 instances of warning CS0162 ( #5951 )
2025-05-23 17:37:08 +02:00
Tayrtahn and GitHub
4b6b688c72
Cleanup warnings in PlacementManager ( #5939 )
2025-05-18 19:14:16 +10:00
Tayrtahn and GitHub
71df25b251
Cleanup warning in Clyde.Sprite ( #5940 )
2025-05-18 18:51:27 +10:00
Tayrtahn and GitHub
9f3db6693e
Add SpriteSystem dependency to VisualizerSystem ( #5935 )
...
* Add protected SpriteSystem reference to VisualizerSystem
* Capital S
2025-05-17 13:26:40 +10:00
Tayrtahn and GitHub
5c97b15849
Mark Entity methods as readonly ( #5919 )
...
* Mark Entity methods as readonly
* Add to GenericEntityPrint
* No but really
2025-05-15 20:23:29 +10:00
Tayrtahn and GitHub
3d8a9a41fa
Combine TileChangedEvents in SetTiles ( #5912 )
...
* Combine TileChangedEvents in SetTiles
* Raise event after regenerating collision
* continue, not return
* No need for GetComponent
* Swap TileRef for Tile + Vector2i
* Estimate size of tileChanges
2025-05-15 20:22:05 +10:00
Tayrtahn and GitHub
b3cf427013
Catch NotYamlSerializable DataFields with analyzer ( #5704 )
...
* Catch NotYamlSerializable DataFields with analyzer
* Extract common defs into shared source
2025-05-10 21:36:33 +10:00
Tayrtahn and GitHub
8f9e0f6bab
Fix warnings in PhysicsMap_Test ( #5884 )
2025-04-24 18:10:13 +10:00
Tayrtahn and GitHub
3ed408de5d
Fix warnings in Joints_Test ( #5885 )
2025-04-24 18:09:27 +10:00
Tayrtahn and GitHub
7365a59bd9
Cleanup warnings in CollisionWake_Test ( #5847 )
2025-04-18 12:05:48 +10:00
Tayrtahn and GitHub
37560f663b
Add GetContainingContainers method to SharedContainerSystem ( #5803 )
...
* Add SharedContainerSystem.EnumerateContainingContainers
* More obvious name
2025-04-17 21:51:23 +10:00
Tayrtahn and GitHub
378a10678c
Improve location reporting for non-writeable DataFields ( #5715 )
...
* Better location reporting for readonly DataField errors
* Better location reporting for readonly DataField property errors
* Use SyntaxKind instead of string for TryGetModifierLocation
2025-04-13 16:22:05 +10:00
Tayrtahn and GitHub
45bb8740a0
Add ForbidLiteralAttribute and analyzer ( #5808 )
...
* Add ForbidLiteral attribute, analyzer, and test
* Removed unused code
* Switch order of methods. It's better this way.
2025-04-08 16:39:38 +02:00
Tayrtahn and GitHub
d84cb6327c
Fix SharedTransformSystem methods erroring on failed Resolves ( #5787 )
...
* Don't error when GetGrid fails
* Fix other Resolves in SharedTransformSystem
2025-04-01 04:59:47 +11:00
Tayrtahn and GitHub
f244c94905
Switch from checking comp.Owner == ent to GetComp(ent) == comp ( #5776 )
2025-03-27 15:21:05 +11:00
Tayrtahn and GitHub
01cac6465b
Cleanup warnings in EntityCoordinates_Tests ( #5771 )
...
* Fix warnings
* Use transform refs to simplify WithEntityId
2025-03-27 15:20:20 +11:00
Tayrtahn and GitHub
089224cd44
Cleanup warnings in EntityLookup_Test ( #5775 )
...
* Replace MapManager.DeleteMap calls with MapSystem.DeleteMap
* Remove unused resolves
2025-03-27 15:07:05 +11:00
Tayrtahn and GitHub
9f807f1ad2
Cleanup warnings in ClientGameStateManager ( #5774 )
...
* Fix unreachable code
* Remove unused variable
2025-03-27 15:06:37 +11:00
Tayrtahn and GitHub
dacaa974d4
Replace MapManager.DeleteMap with SharedMapSystem.DeleteMap in misc tests ( #5777 )
...
* Replace MapManager.DeleteMap with SharedMapSystem.DeleteMap in various tests
* Poke tests
* I guess this is was technically a breaking change?
2025-03-27 13:50:56 +11:00
Tayrtahn and GitHub
ccc383b1bf
Cleanup: Remove redundant Prototype names ( #5721 )
...
* Cleanup: Remove redundant Prototype names
* Actually this one probably should stay
* Suppress warning
* Remove warning suppression on AudioMetadataPrototype
* But wait, there's more!
2025-03-26 01:39:10 +01:00
Tayrtahn and GitHub
7405904041
Add entity description as tooltip on entity spawn panel ( #5761 )
2025-03-23 14:07:22 +01:00
Tayrtahn and GitHub
4529a7569a
Replace uses of ProtoId<EntityPrototype> with ProtoId<EntityCategoryPrototype> ( #5762 )
2025-03-21 04:08:12 +01:00
Tayrtahn and GitHub
f10e96a6d1
Clean up warnings in Stack_Test ( #5705 )
2025-03-08 13:49:52 +11:00
Tayrtahn and GitHub
e14537074e
Add ICloneable support to ComponentNetworkGenerator ( #5656 )
2025-02-18 23:21:40 +11:00
Tayrtahn and GitHub
fec81bc2a1
Add more info to AnchorEntity debug assert ( #5668 )
2025-02-16 03:16:23 +01:00
Tayrtahn and GitHub
9781405f5e
Better location reporting for DataField analyzers ( #5344 )
...
* Better location reporting for DataField analyzers
* Update test
* Use const string in both methods
2024-08-13 11:40:23 +02:00
Tayrtahn and GitHub
b6548c870c
Add analyzer/fixer for replacing ProtoId<EntityPrototype> with EntProtoId ( #5312 )
...
* Add PreferOtherTypeAttribute, analyzer, and test.
* nullable enable
* Add nuget package for CodeFix verifier
* Add fixer for PreferOtherType
* Rename arguments
* Adjust diagnostic message
* Move attribute lookup
2024-07-23 19:01:43 +02:00
c3d8080a8e
Add PreferNonGenericVariantFor attribute and analyzer ( #5190 )
...
Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com >
2024-07-10 12:33:56 +02:00
Tayrtahn and GitHub
8e50924607
Add analyzer/fixer for DataFields with ReadWrite VV ( #5164 )
...
* Add analyzer/fixer for datafields with ReadWrite VV
* Nothing to see here
2024-07-10 02:04:55 +02:00
Tayrtahn and GitHub
7319f3a241
Raise an event when an entity's name is changed ( #5216 )
2024-06-08 10:45:28 +10:00
Tayrtahn and GitHub
da7abc6580
Add analyzer and fixer for redundant DataField tag arguments ( #5134 )
...
* Add analyzer and fixer for redundant DataField tag arguments
* Share Tag autogeneration logic
2024-05-17 07:44:03 +02:00
Tayrtahn and GitHub
0fdba836ee
Remove debug assert for Fixture.Owner equality ( #5066 )
...
* Removed debug assert for Fixture owner equality
* Blah
2024-04-26 14:47:09 +10:00
Tayrtahn and GitHub
8db3da4852
Add Type tracking to FieldNotFoundErrorNode ( #5032 )
...
* Add Type tracking to FieldNotFoundErrorNode
* Suggested changes, plus xmldoc and primary constructor conversion.
2024-04-08 19:27:02 +02:00
Tayrtahn and GitHub
2946cd866c
Added length comparison helpers for Vector2 ( #4999 )
2024-03-25 16:08:43 +01:00
Tayrtahn and GitHub
b9b565d53e
Fix uncaught overflow exception when parsing NetEntities from strings. ( #4989 )
...
* Fixed uncaught overflow exception when parsing NetEntities from strings.
* or
2024-03-23 20:55:45 +01:00
Tayrtahn and GitHub
1f2b38a6d1
Code cleanup: Purge calls to obsolete EntityCoordinates methods ( #4983 )
2024-03-23 13:07:33 +11:00
Tayrtahn and GitHub
9bfe889c86
Code cleanup: Purge obsolete MapManager methods ( #4981 )
...
* GetGrid
* GridExists
* TryGetGrid
2024-03-21 16:31:33 +01:00
Tayrtahn and GitHub
e3954494e7
Just two ( #4982 )
2024-03-20 15:48:19 +01:00
Tayrtahn and GitHub
16c7c71ca6
Code cleanup: Dirty(Comp) ( #4979 )
...
* The easy ones
* SharedPhysicsSystem
2024-03-18 21:36:52 +01:00
Tayrtahn and GitHub
e3bac382ce
Add some helper methods to PVS Filters ( #4933 )
2024-03-03 11:51:40 +11:00