mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-26 22:49:01 +08:00
18 lines
401 B
Java
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
|
|
}
|