com.primogemstudio.advancedfmk.live2d.MotionPriority Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of advancedfmk-animerenderer Show documentation
Show all versions of advancedfmk-animerenderer Show documentation
MMD renderer / Live2D renderer for Advanced Framework
package com.primogemstudio.advancedfmk.live2d;
public class MotionPriority {
public static final int NONE = 0;
public static final int IDLE = 1;
public static final int NORMAL = 2;
public static final int FORCE = 3;
private MotionPriority() {
}
}