Difference between revisions of "Talk:Luna Engine Configuration Guide"

From Yanfly.moe Wiki
Jump to navigation Jump to search
m (Supplemental Documentations)
(Supplemental Documentations)
 
Line 19: Line 19:
 
If you want to use an image for the gauge's back, you will need to make:
 
If you want to use an image for the gauge's back, you will need to make:
 
<pre>gaugeBackColor: "rgba(0, 0, 0, 0)"</pre>
 
<pre>gaugeBackColor: "rgba(0, 0, 0, 0)"</pre>
To turn transparent.
+
To turn transparent and display your image unblocked by a black rectangle.

Latest revision as of 10:42, 15 July 2019

Supplemental Documentations

Add to documentation, if you need to access very specific items that uses "this._" Here's an example on how to do it for Equip Status when you have to draw text manually:

conditions:
        hasNewParam:
          condition: parent._tempActor
          config:
            text: "> ${parent._tempActor.param(6)}"

Another one to add is gauge display settings.

      gaugeColor1: "rgb(249, 79, 131)"
      gaugeColor2: "rgb(249, 79, 131)"
      gaugeBackColor: "rgba(59, 91, 147, 255)"

If you want to use an image for the gauge's back, you will need to make:

gaugeBackColor: "rgba(0, 0, 0, 0)"

To turn transparent and display your image unblocked by a black rectangle.