2025-04-15 12:09:40 -04:00

18 lines
401 B
Java

package com.esotericsoftware.spine;
/** Determines how physics and other non-deterministic updates are applied. */
public enum Physics {
/** Physics are not updated or applied. */
none,
/** Physics are reset to the current pose. */
reset,
/** Physics are updated and the pose from physics is applied. */
update,
/** Physics are not updated but the pose from physics is applied. */
pose
}