Verification with block rendering and all
This commit is contained in:
@@ -17,14 +17,19 @@
|
||||
},
|
||||
"minecraft:emitter_shape_point": {},
|
||||
"minecraft:particle_lifetime_expression": {
|
||||
"max_lifetime": 1
|
||||
"max_lifetime": "variable.lifetime"
|
||||
},
|
||||
"minecraft:particle_appearance_billboard": {
|
||||
"size": [0.5, 0.5],
|
||||
"facing_camera_mode": "emitter_transform_xy"
|
||||
},
|
||||
"minecraft:particle_appearance_tinting": {
|
||||
"color": [0, 0, 0, 0.5]
|
||||
"color": [
|
||||
"variable.face_color.r",
|
||||
"variable.face_color.g",
|
||||
"variable.face_color.b",
|
||||
"variable.face_color.a"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,14 +17,19 @@
|
||||
},
|
||||
"minecraft:emitter_shape_point": {},
|
||||
"minecraft:particle_lifetime_expression": {
|
||||
"max_lifetime": 1
|
||||
"max_lifetime": "variable.lifetime"
|
||||
},
|
||||
"minecraft:particle_appearance_billboard": {
|
||||
"size": [0.5, 0.5],
|
||||
"facing_camera_mode": "emitter_transform_xz"
|
||||
},
|
||||
"minecraft:particle_appearance_tinting": {
|
||||
"color": [0, 0, 0, 0.5]
|
||||
"color": [
|
||||
"variable.face_color.r",
|
||||
"variable.face_color.g",
|
||||
"variable.face_color.b",
|
||||
"variable.face_color.a"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,14 +17,19 @@
|
||||
},
|
||||
"minecraft:emitter_shape_point": {},
|
||||
"minecraft:particle_lifetime_expression": {
|
||||
"max_lifetime": 1
|
||||
"max_lifetime": "variable.lifetime"
|
||||
},
|
||||
"minecraft:particle_appearance_billboard": {
|
||||
"size": [0.5, 0.5],
|
||||
"facing_camera_mode": "emitter_transform_yz"
|
||||
},
|
||||
"minecraft:particle_appearance_tinting": {
|
||||
"color": [0, 0, 0, 0.5]
|
||||
"color": [
|
||||
"variable.face_color.r",
|
||||
"variable.face_color.g",
|
||||
"variable.face_color.b",
|
||||
"variable.face_color.a"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"description": {
|
||||
"identifier": "structool:outline",
|
||||
"basic_render_parameters": {
|
||||
"material": "particles_blend",
|
||||
"material": "particles_alpha",
|
||||
"texture": "textures/particle/particles"
|
||||
}
|
||||
},
|
||||
@@ -30,7 +30,12 @@
|
||||
}
|
||||
},
|
||||
"minecraft:particle_appearance_tinting": {
|
||||
"color": [0, 0.66667, 0, 1]
|
||||
"color": [
|
||||
"variable.dot_color.r",
|
||||
"variable.dot_color.g",
|
||||
"variable.dot_color.b",
|
||||
"variable.dot_color.a"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user