@rpg-engine/long-bow 0.3.85 → 0.3.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/long-bow.cjs.development.js +4 -2
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +4 -2
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/components/Item/Inventory/ItemSlot.tsx +2 -0
|
@@ -33739,7 +33739,8 @@ var ItemSlot = /*#__PURE__*/mobxReactLite.observer(function (_ref) {
|
|
|
33739
33739
|
spriteKey: shared.getItemTextureKeyPath({
|
|
33740
33740
|
key: itemToRender.texturePath,
|
|
33741
33741
|
texturePath: itemToRender.texturePath,
|
|
33742
|
-
stackQty: itemToRender.stackQty || 1
|
|
33742
|
+
stackQty: itemToRender.stackQty || 1,
|
|
33743
|
+
isStackable: itemToRender.isStackable
|
|
33743
33744
|
}, atlasJSON),
|
|
33744
33745
|
imgScale: 3,
|
|
33745
33746
|
imgClassname: "sprite-from-atlas-img--item"
|
|
@@ -33765,7 +33766,8 @@ var ItemSlot = /*#__PURE__*/mobxReactLite.observer(function (_ref) {
|
|
|
33765
33766
|
spriteKey: shared.getItemTextureKeyPath({
|
|
33766
33767
|
key: itemToRender.texturePath,
|
|
33767
33768
|
texturePath: itemToRender.texturePath,
|
|
33768
|
-
stackQty: itemToRender.stackQty || 1
|
|
33769
|
+
stackQty: itemToRender.stackQty || 1,
|
|
33770
|
+
isStackable: itemToRender.isStackable
|
|
33769
33771
|
}, atlasJSON),
|
|
33770
33772
|
imgScale: 3,
|
|
33771
33773
|
imgClassname: "sprite-from-atlas-img--item"
|