Skip to content

Commit

Permalink
Fix #299
Browse files Browse the repository at this point in the history
  • Loading branch information
SnaveSutit committed Sep 5, 2024
1 parent 9d16a1f commit e18eacc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/systems/rigRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export interface IRenderedNodes {
ItemDisplay: IRenderedNode & {
type: 'item_display'
item: string
itme_display: string
item_display: string
/**
* The base scale of the bone, used to offset any rescaling done to the bone's model due to exceeding the 3x3x3 model size limit.
*/
Expand Down Expand Up @@ -444,7 +444,7 @@ function renderItemDisplay(display: VanillaItemDisplay, rig: IRenderedRig) {
uuid: display.uuid,
parent: parentId,
item: display.item,
itme_display: display.itemDisplay,
item_display: display.itemDisplay,
base_scale: 1,
config: display.config,
default_transform: {} as INodeTransform,
Expand Down

0 comments on commit e18eacc

Please sign in to comment.