I have a system for moving units along a path in exact formations using the timeline. It’s composed like so:
Timeline track references the path asset in the scene. Each timeline clip on the path track references a “unit group” and a start and end waypoint. The system animates the unit group in formation from waypoint start to end across the span of the timeline clip.
I have also written the behaviour code to move the units when scrubbing the timeline in the editor so the animators don’t have to jump into and out of playmode to see how things will move but it’s forever marking the scene as dirty and needing saving (cause stuff is moving around at edit time). Is there a way to move objects in the scene and not have those changes serialised/saved like the HideAndDontSave flag or something to that nature?
Unity’s built in animation system seems to be doing this somehow as you can see objects moving in the editor but it never dirty’s the scene. I’ve searched a lot but haven’t been able to turn up anything.
Any assistance would be appreciated.