Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

unity3d - Unity ECS System Breaks After Namespace Change

I just realized that my gameplay logic broke after some (allegedly) harmless refactoring changes.

Going through my VCS history and some debugging I fond out that the problem was caused by a namespace change for the system causing the issue.

What was weird is that the system still appeared to work, the sections updating Translation and Rotation of my entities were still called (as seen from break points / log messages), however, no of the changes were reflected in the rendering or the actual components.

question from:https://stackoverflow.com/questions/65861066/unity-ecs-system-breaks-after-namespace-change

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It turns out the change in namespace changed the order of the system in it's system group.

Specifically, the entity had a PhysicsBody component on it and my system that set the Translation and Rotation was put after the BuildPhysicsWorld system which apparently nullified the system writing to Translation and Rotation (the specific components and systems might vary in your case).

The solution is to specifically declare the order dependency with [UpdateBefore(typeof(BuildPhysicsWorld)] (or [UpdateAfter()] if appropriate).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

62 comments

56.6k users

...