mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2024-11-23 13:36:18 +00:00
33 lines
826 B
JSON
33 lines
826 B
JSON
{
|
|
"format_version": "1.10.0",
|
|
"minecraft:client_entity": {
|
|
"description": {
|
|
"identifier": "minecraft:xp_orb",
|
|
"materials": {
|
|
"default": "experience_orb"
|
|
},
|
|
"textures": {
|
|
"default": "textures/entity/experience_orb"
|
|
},
|
|
"geometry": {
|
|
"default": "geometry.experience_orb"
|
|
},
|
|
"animations": {
|
|
"face_player": "animation.actor.billboard"
|
|
},
|
|
"scripts": {
|
|
"scale": "0.3",
|
|
"pre_animation": [
|
|
"variable.u = Math.mod(query.texture_frame_index, 4) * 16.0 / 64.0;",
|
|
"variable.v = math.round(query.texture_frame_index / 4) * 16.0 / 64.0;"
|
|
],
|
|
"animate": [
|
|
"face_player"
|
|
]
|
|
},
|
|
"render_controllers": [
|
|
"controller.render.experience_orb"
|
|
]
|
|
}
|
|
}
|
|
} |