I am trying to access ORK's global variables as follows
https://forum.orkframework.com/discussion/6058/about-getting-variables#latest

I am unable to enter ORK.Game.Variables,
Is there something missing in using or namespace?
ORK3 3.16.2

using UnityEngine;
using GamingIsLove.ORKFramework;
using GamingIsLove.Makinom;
using GamingIsLove.Makinom.Components;

namespace GamingIsLove.ORKFramework {
public class test : MonoBehaviour
{float value = ORK.Game.Variables.GetFloat("key");}}
  • That's an old ORK 2 thread, this changed a bit in ORK 3.
    The global variables are now accessed via Maki.Game.Variables, since they're part of Makinom's functionality (which ORK 3 is an extension for).
    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 for the quick answer, much appreciated.
Sign In or Register to comment.