Luna Engine Version 1.1.3 Update
Luna Engine MV » Devlog
Hello friends~
Luna Engine is updated to Version 1.1.3!
✼ Changes:
- Updated xx_Snippets/YEP_CompatibilityPatch_StateCounters.js This is to include support to Custom Stacking states.
//======================================== // State Counter //======================================== Game_Actor.prototype.stateTurns = function() { var values = [] for (var stateId in this._stateTurns) { values.push(this._stateTurns[stateId]) } return values } Game_Actor.prototype.buffTurns = function() { var values = [] for (var i = 0; i < this._buffTurns.length; i++) { if (this._buffTurns[i] !== 0) { values.push(this._buffTurns[i]) } } return values } Game_Actor.prototype.allTurns = function() { var stateTurns = this.stateTurns() var buffTurns = this.buffTurns() return stateTurns.concat(buffTurns) }
- Luna Engine Sideview Template has been updated. Includes the State Counter update in LunaSnippets.js
- The Sample Project has a sample of Custom State Stacking. SceneBattle.yml is updated:
BattlerStates: type: grid x: type: fixed value: -30 y: type: fixed value: 0 width: type: fixed value: 96 height: type: fixed value: 32 anchor: x: 0 y: 1 horizontal: true limit: 3 bind: true itemList: ${data.allStatesBuffs} components: StateIcon: type: icon x: type: fixed value: 0 y: type: fixed value: 0 anchor: x: 0 y: 0 iconSet: "IconSet" iconIndex: "${data.iconIndex}" TurnCounter: type: Text x: type: fixed value: -3 y: type: fixed value: -3 anchor: x: 0 y: 0 bind: true textColor: rgba(255, 197, 95, 255) fontOutline: enable: true lineWidth: 5 lineColor: rgba(16, 16, 16, 1) text: "${data.turnCount}" StateCounter: type: Text x: type: fixed value: 35 y: type: fixed value: 10 anchor: x: 1 y: 0 bind: true textColor: rgba(210, 173, 213) fontOutline: enable: true lineWidth: 5 lineColor: rgba(16, 16, 16, 1) text: "${data.stateCount}" template: type: FreeLayout components: - StateIcon - TurnCounter - StateCounter
Files
LunaEngineMV_V1.1.3.zip 171 MB
Sep 30, 2019
LunaEngineMV_ScriptsOnly_V1.1.3.zip 117 kB
Sep 30, 2019
Get Luna Engine MV
Buy Now$59.99 USD or more
Luna Engine MV
A script that modifies RPG Maker MV UI easily
Status | Released |
Category | Tool |
Author | Archeia |
Tags | gui-editor, luna-engine, plugin, rmmv, RPG Maker, rpgmv, User Interface (UI), ux |
More posts
- Luna Engine 1.1.5 UpdateAug 27, 2020
- Luna Engine 1.1.4 UpdateOct 17, 2019
- Luna Engine Version 1.1.2 UpdateSep 19, 2019
- Luna Engine Version 1.1.1 UpdateSep 16, 2019
- Luna Engine Version 1.1.0 is up!Sep 10, 2019
- Luna Engine Version 1.0.0.1 Update + RoadmapSep 09, 2019
- Luna Engine Complete!Aug 29, 2019
- Configuration Bug Fix: Continue Grayed OutJun 24, 2019
- Luna Engine MV : Early AccessJun 23, 2019
Leave a comment
Log in with itch.io to leave a comment.