I'm a little embarrassed to ask this question, but ...
I was trying to access variables with a script, and I looked it up.
ORK.Game.Variables
I found that I can get the global variable with
But I couldn't access ORK.Game.Variables with the script on the first place.
What should I do?

using UnityEngine;
using GamingIsLove.ORKFramework;

public class UpdateEquipment : MonoBehaviour
{
Combatant player;
void Start()
{
player = ORK.Game.ActiveGroup.Leader;
ORK.Game.Variables ※※←Can't access
}
}
  • edited March 2022
    Since ORK 3 is an extension for Makinom 2, some of the functionality is now part of Makinom.

    E.g. the global variables are accessed via Maki.Game.Variables now.

    You'll also need the namespace GamingIsLove.Makinom.
    Post edited by gamingislove on
    Please consider rating/reviewing my products on the Asset Store (hopefully positively), as that helps tremendously with getting found.
    If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
  • Thanks GIL!
    Sorry for the trivial question.
    And thanks for the great asset, I'll do my best to use it.
Sign In or Register to comment.