@rpg-engine/long-bow 0.2.60 → 0.2.61
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 +1 -1
- 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 +1 -1
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/SkillProgressBar.tsx +1 -1
package/dist/long-bow.esm.js
CHANGED
|
@@ -28694,7 +28694,7 @@ var SkillProgressBar = function SkillProgressBar(_ref) {
|
|
|
28694
28694
|
skillPointsToNextLevel = getSPForLevel(level + 1);
|
|
28695
28695
|
}
|
|
28696
28696
|
var nextLevelSPWillbe = skillPoints + skillPointsToNextLevel;
|
|
28697
|
-
var ratio = skillPoints /
|
|
28697
|
+
var ratio = skillPoints / nextLevelSPWillbe * 100;
|
|
28698
28698
|
return React.createElement(React.Fragment, null, React.createElement(ProgressTitle, null, React.createElement(TitleName, null, skillName), React.createElement(ValueDisplay, null, "lv ", level)), React.createElement(ProgressBody, null, React.createElement(ProgressIconContainer, null, atlasIMG && atlasJSON ? React.createElement(SpriteContainer, null, React.createElement(ErrorBoundary, null, React.createElement(SpriteFromAtlas, {
|
|
28699
28699
|
atlasIMG: atlasIMG,
|
|
28700
28700
|
atlasJSON: atlasJSON,
|