Hello I’m struggling to have a fixedupdate system. I’ve asked people I read all the information online but I just don’t understand
This is what I used to write but since updating ECS package i get warnings and it doesnt run.
Can I please please get a C# example how to write a fixedupdate system this is what i used to use:
[UpdateBefore(typeof(PostLateUpdate))]
class _LateUpdate_ : ComponentSystem
{
protected override void OnUpdate ()
{
}
}
Thank you!