ConvertToManuallyUpdated
Introduction
Code Example
myEntity.ConvertToManuallyUpdated();Call ConvertToManuallyUpdated *after* positioning Entities
for(int i = 0; i < 10; i++)
{
Tree tree = new Tree();
tree.X = i * 100;
tree.ConvertToManuallyUpdated(); // <- Do this *AFTER* setting its position.
this.TreeList.Add(tree);
}When to use ConvertToManuallyUpdated
Manually Updating Entities
Last updated
Was this helpful?