Hello! Thanks for reading my thread.

E.g. I'd like to access item data on runtime by my own and I know there is a class shown in API called ORKFramework.Item in which all properties and attributes can be referred to. But how do I access the entire ORK project? Like reading out a part of project data and assign them to a variable?

I appreciate it!
  • Check out this how-to on scripting.

    You can access pretty much all information via the ORK class (after ORK was initialized via a Game Starter). For items it's ORK.Items, e.g.:
    Item item = ORK.Items.Get(id);
    id is the ID/index of the item.
    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!
  • Thank you for the awesome support!
Sign In or Register to comment.