@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
package/dist/long-bow.esm.js
CHANGED
|
@@ -33734,7 +33734,8 @@ var ItemSlot = /*#__PURE__*/observer(function (_ref) {
|
|
|
33734
33734
|
spriteKey: getItemTextureKeyPath({
|
|
33735
33735
|
key: itemToRender.texturePath,
|
|
33736
33736
|
texturePath: itemToRender.texturePath,
|
|
33737
|
-
stackQty: itemToRender.stackQty || 1
|
|
33737
|
+
stackQty: itemToRender.stackQty || 1,
|
|
33738
|
+
isStackable: itemToRender.isStackable
|
|
33738
33739
|
}, atlasJSON),
|
|
33739
33740
|
imgScale: 3,
|
|
33740
33741
|
imgClassname: "sprite-from-atlas-img--item"
|
|
@@ -33760,7 +33761,8 @@ var ItemSlot = /*#__PURE__*/observer(function (_ref) {
|
|
|
33760
33761
|
spriteKey: getItemTextureKeyPath({
|
|
33761
33762
|
key: itemToRender.texturePath,
|
|
33762
33763
|
texturePath: itemToRender.texturePath,
|
|
33763
|
-
stackQty: itemToRender.stackQty || 1
|
|
33764
|
+
stackQty: itemToRender.stackQty || 1,
|
|
33765
|
+
isStackable: itemToRender.isStackable
|
|
33764
33766
|
}, atlasJSON),
|
|
33765
33767
|
imgScale: 3,
|
|
33766
33768
|
imgClassname: "sprite-from-atlas-img--item"
|