So far I've mostly been happy with my purchase of a C2 license, and have created a few different simple games to get a feel for the workflow and tools available.However, I've been having a serious issue lately with arrays.
I'm about to enter the last semester of my BS in CS, so it's fair to say I already know more than I ever cared to about arrays and how to use them. My problem is that there seems to be a distinct lack of a simple way to set the contents of an Array before the game starts.
Here's what I mean:
For the sake of argument and simplicity, suppose I have designed the name, stats, price, rarity, etc. for a list of 20 or so weapons in an RPG example. I don't need to change this data at runtime, I just need an efficient way to load this content into an array while still being able to modify it later for balance reasons and of course I need to be able to access that data at runtime for shops and combat and such.
My problem is that unlike for all other objects or variables, there doesn't seem to be a convenient field anywhere where I can enter the data in.
Maybe I'm missing something, surely there must be a simple solution to what must be a common problem. I'd really appreciate it if someone could point me towards the 'standard' way to initialize an array in this way in C2.