[libgdx] Comments for porting.

This commit is contained in:
Nathan Sweet 2025-06-12 16:08:37 -04:00
parent a574de1202
commit dd1fd6ab51

View File

@ -36,15 +36,15 @@ abstract public class Posed< //
return applied; return applied;
} }
void pose () { void pose () { // Port: usePose
applied = pose; applied = pose;
} }
void constrained () { void constrained () { // Port: useConstrained
applied = constrained; applied = constrained;
} }
void reset () { void reset () { // Port: resetConstrained
constrained.set(pose); constrained.set(pose);
} }