grossd's Forum Posts

  • ok.thanks. its a feature

  • Thanks for the tip. I had learned about it some time ago in the forum.

    This tip works for all objects that have instances. But objects such as Dictionary or Array, it doesn't work. Also, it would be nice to have for global variables.

  • Hi,

    In my game I have a dictionary that holds the json of another dictionary that holds the json of another dictionary that holds ... you get it ... about 5 levels down ...

    When i export the json of the "root" dictionary and save the generated text in a file I get a backslash "\" (probably escape chars) for each json in json, so i end up with a file that has lots of these \\\\\" \\\\\".

    Is this a bug of a feature? I.e. is this necessary for json export import to work or is this a bug.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Hi,

    Often I need to look for a object type use across many event sheets. For example, where was GameDataDictionary used? This is in particularly needed before I want to delete it, to ensure that i have't missed a use of it somewhere.

    It would be great if there was a search that at least lists all the event sheets the object type appears.

    Currently, I am exporting the game as project files and do a grep outside of C2. having this integrated would be much more efficient.

  • Hi,

    I am documenting design inside C2 using comments in layouts. Right now its pretty tedious to create a new comment for each line. It would be great if comments could also be multi line. Perhaps tehre could be two menu items comment line, comment text, with the latter being multiline.

    Or more simply allow pressing enter to (or shift enter, if necessary) to create another comment line

  • Hi (@Ashley)

    For player data collection/instrumentation I have an elaborate data structure of dictionaries included in other dictionaries, yielding plenty of hierarchical json. I notice that it requires a lot of loop programming.

    It would be great if C2 would have a functional programming extension that would allow applying function to Arrays and Dictionaries, and/or more specifically a map reduce extension.

    Is my requirement common? If yes, could this be done?

  • Its a classical chicken and egg situation. If there are interesting and useful applications then it increases the odds of success.

    But, i guess the effort to write a wrapper for the google glass environment and pugins to take advantage of its API/special features, is quite an effort.

  • Hi,

    Are there any plans to support Google Glass?

    Dan

  • ok, downloaded the manual and can access the info now

    Dan

  • Hi Ashley,

    I wanted to look up information about node webkit. Going to the online Manual and selecting Node WebKit plugin, i am navigated to the node webkit download page to download node webkit, instead of viewing the manual entry for node webkit.

    Can this be fixed. I need to look up the manual to get some programming task done

    thanks,

    Dan

  • OK. Found my error.

    I got confused between System.ForEach and Dictionary.ForEach.

    I used the first, instead of the second. A subtle, yet, very important difference!

    now it works.

  • Hi,

    During a game i collect game data into dictionary. I then want to convert the dictionary data into a CSV file, however, for some strange reason I can't get the loop over the dictionary working. What seems simple just doesn't work for me.

    Global aCSV: text

    On Button Click

    -- For Each ADictionary

    ---- Set aCSV = aCSV & "," & aDictionary.currentvalue

    I can confirm that during testing the dictionary has at least two entries, however, for some reason the contents of aCSV is ", 0"

    any thoughts would be much appreciated

    Dan

  • Thanks.

    At the time, I wanted to create some external tools to augment capabilities of the C2 code editor, and manipulating XML sounded like an interesting idea, but in the meantime I found other ways to help me, such as grep.

    Dan

  • no

  • Hi,

    It would be really nice, if there was a text window to paste version changes into, which gets saved along with the version number of the game. Perhaps this can be coupled somehow with an increase in version number. Like this what has changed, is kept together with version information and the code.

    Ideally, there would be a task list included in C2 (like for example in Visual Studio IDE), which can then be associated with a saved version.

    thanks,

    Dan