Elaborate on the transform descs

This commit is contained in:
libraryaddict 2023-05-16 18:20:16 +12:00
parent b220d8987f
commit 9f82765d4b

View File

@ -141,11 +141,13 @@ public class ParamInfoTypes {
}
if (NmsVersion.v1_19_R3.isSupported()) {
paramInfos.add(new ParamInfoTransformation(Transformation.class, "Transformation", "Translation (Transform, Left Rotation, Scale, Right Rotation)",
"Numbers for a position translation"));
paramInfos.add(new ParamInfoVector3f(Vector3f.class, "Vector3f", "Vector3f (X, Y, Z)", "Used as part of a Transformation"));
paramInfos.add(new ParamInfoTransformation(Transformation.class, "Transformation",
"Translation (Transform, Left Rotation, Scale, Right Rotation). 3, then 4, then 3, then 4 numbers. All seperated by a comma",
"14 comma seperated numbers for a position translation"));
paramInfos.add(
new ParamInfoQuaternionf(Quaternionf.class, "Quaternion", "Quaternion (X, Y, Z, W)", "Four values used to define part of a Transformation"));
new ParamInfoVector3f(Vector3f.class, "Vector3f", "Vector3f (X, Y, Z)", "Used as part of a Transformation for the Transform and Scale"));
paramInfos.add(new ParamInfoQuaternionf(Quaternionf.class, "Quaternion", "Quaternion (X, Y, Z, W)",
"Four values used to define part of a Transformation for the rotations"));
paramInfos.add(new ParamInfoEnum(ItemDisplay.ItemDisplayTransform.class, "Item Display Transform", "How the Item Display is transformed"));
paramInfos.add(new ParamInfoEnum(Display.Billboard.class, "Display Billboard", "How the billboard is aligned"));