plugin-card-layers
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
plugin-card-layers [2024/12/03 11:48] – [Badges] banerjeesw | plugin-card-layers [2024/12/10 05:01] (current) – [Badge Text] isiahgames | ||
---|---|---|---|
Line 121: | Line 121: | ||
===== Badge Text ===== | ===== Badge Text ===== | ||
+ | The Text property is not a simple text input, but instead code which evaluates into text. In programming, | ||
+ | |||
+ | "Hello World!" | ||
+ | |||
+ | instead of like this | ||
+ | |||
+ | Hello World! | ||
+ | |||
+ | This property is code so that it can display variables more easily. | ||
+ | |||
+ | Example: | ||
+ | < | ||
+ | user.mp + " MP" | ||
+ | </ | ||
+ | |||
+ | This example would display "3 MP" while the owner of the card had 3 MP. | ||
+ | |||
+ | There are three variables you can use in the Text property to make referencing variables you want easier. | ||
+ | |||
+ | < | ||
+ | user - The Actor that owns the card. | ||
+ | card - The Card object itself. | ||
+ | skill - The Skill that the Card is a copy of. | ||
+ | </ | ||
+ | |||
+ | Examples of how you might use these: | ||
+ | |||
+ | < | ||
+ | "LVL " + user.level | ||
+ | card.origin().toUpperCase() | ||
+ | skill.mpCost | ||
+ | </ | ||
+ | |||
+ | If you're using MYTH_CGC_IndependantCardVariables you can use: | ||
+ | < | ||
+ | card.cardVar(1) | ||
+ | </ | ||
+ | |||
+ | ===== Badge Notetags ===== | ||
+ | |||
+ | Badge notetags work similarly to Layer notetags and use the following syntax: | ||
+ | |||
+ | < | ||
+ | BadgeName (ParentLayerName): | ||
+ | </ | ||
+ | |||
+ | | **BadgeName** | ||
+ | | **ParentLayerName** | The name of the Layer this Badge is attached to. | | ||
+ | | **TextCode** | The code that returns the text for the Badge to display. | | ||
+ | | **ImageName** | The name of the image file to use for the Badge. Can have spaces. | | ||
+ | | **X** | The new X offset | | ||
+ | | **Y** | The new Y offset | | ||
+ | | **Condition** | The new condition for the Badge. | | ||
+ | |||
+ | Just like with Layers, you can use notetags to define entirely new Badges or override the values defined through the Custom Badges plugin parameter. | ||
===== Conditions ===== | ===== Conditions ===== | ||
+ | The Condition property determines whether a Layer or Badge is visible. If it returns true, the component is visible, and if it returns false it is invisible. | ||
+ | |||
+ | Note that because Badges are attached to Layers, if a Badge' | ||
+ | |||
+ | Just like with Badge Text, you have three variables you can use to make this evaluation more flexible: | ||
+ | < | ||
+ | user - The Actor that owns the card. | ||
+ | card - The Card object itself. | ||
+ | skill - The Skill that the Card is a copy of. | ||
+ | </ | ||
===== Refreshing ===== | ===== Refreshing ===== | ||
plugin-card-layers.1733222928.txt.gz · Last modified: 2024/12/03 11:48 by banerjeesw