Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public DarkLatexWolfPupRenderer(EntityRendererProvider.Context context) {
.withSclera(Color3.fromInt(0x242424))
.withIris(CustomEyesLayer.fixedIfNotDarkLatexOverrideLeft(Color3.WHITE),
CustomEyesLayer.fixedIfNotDarkLatexOverrideRight(Color3.WHITE))
.build().setHeadShape(CustomEyesLayer.HeadShape.PUP));
.build().setHeadShape(CustomEyesLayer.HeadShape.PUP_CONCAVE));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
public class CustomEyesLayer<M extends AdvancedHumanoidModel<T>, T extends ChangedEntity> extends RenderLayer<T, M> {
public enum HeadShape implements StringRepresentable {
NORMAL("normal", 0, 0, -4, -8, -4, 8, 8, 8, new CubeDeformation(0.0025f)),
PUP("pup", 2, 2, -4, -4, -6, 8, 8, 6, new CubeDeformation(0.0025f)),
PUP_P1("pup_p1", 2, 2, -4, -4, -7, 8, 8, 6, new CubeDeformation(0.0025f));
PUP_CONCAVE("pup_concave", 2, 2, -4, -4, -6, 8, 8, 6, new CubeDeformation(0.0025f)),
PUP("pup", 2, 2, -4, -4, -7, 8, 8, 6, new CubeDeformation(0.0025f));
final String serializedName;
final int texX, texY;
final int x, y, z, width, height, depth;
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"piece": {
"type": "changed:room",
"template": "changed:facility/room/maintenance/room_maintenance_generator_hall",
"loot_table": "changed:chests/decayed_lab_aqua"
},
"spawn_weight": 10,
"neighboring_zones": [
"changed:maintenance"
]
}