Skip to content

Commit 99446a5

Browse files
committed
🛠️ Fixed #347
1 parent 89369b1 commit 99446a5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/systems/rigRenderer.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,9 @@ function renderGroup(
346346
if (!groupModel) {
347347
groupModel = defaultVariant.models[group.uuid] = {
348348
model: {
349-
textures: {},
349+
textures: {
350+
particle: 'minecraft:item/pufferfish',
351+
},
350352
display: { head: { rotation: [0, 180, 0] } },
351353
},
352354
custom_model_data: -1, // This is calculated when constructing the resource pack.
@@ -557,7 +559,6 @@ function renderVariantModels(variant: Variant, rig: IRenderedRig) {
557559
const defaultVariant = Variant.getDefault()
558560
const defaultModels = rig.variants[defaultVariant.uuid].models
559561

560-
// debugger
561562
for (const [uuid, bone] of Object.entries(rig.nodes)) {
562563
if (bone.type !== 'bone') continue
563564
if (variant.excludedNodes.find(v => v.value === uuid)) continue

0 commit comments

Comments
 (0)