Renamed the commonly used Position POJO into AdvancedPosition, as it also hold pitch, yaw and roll
Made GuiDropdown only accept instances of GuiEntryListEntry to avoid unneccessary toString() methods returning the name Added GuiEntryListValueEntry which holds a Value and a Name to be displayed Continued work on GuiObjectManager
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package eu.crushedpixel.replaymod.holders;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
public class Transformation {
|
||||
|
||||
private Position anchor;
|
||||
private Position position;
|
||||
private Position orientation;
|
||||
private Position scale;
|
||||
private double opacity;
|
||||
|
||||
private float width, height;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user