zenox98's Forum Posts

  • Hello everyone I am new to construct 2 and i recently finished my game i want to upload it but everytime i try it says c2runtime.js not found .What do I do?

    You need to provide more information, such as:

    what version of C2 are you using?

    how are you exporting?

    where are you exporting to?

    have you read Ashley's tutorial on Uploading to the web?

    What error messages are you getting?

    Hello Guys,

    When I add the Wii U object to a project, I got the error below when running the Nintendo Web Framework tool :

    [ ] #0 getController()

    [ ] #1 () at file:///vol/content/app/c2runtime.js:18985

    [ ] Parameter 1 is of type undefined, not type Number as expected

    As I only add the Wii U object into my project, I suppose that the code isn't the problem.

    Does anyone ever get a such arror ?

    Thank you !

    WII U questions should not be posted on here due to the NDA:

    Quote from Ashley

    [quote:2fg3mcw9]You should ask Wii U specific questions on the Wii U developer's forum, since Wii U development is under NDA and we are not allowed to discuss it in public here.

    Please ask in the Nintendo Dev forums:https://developer.nintendo.com/

    Sorry - locking.

  • Note: Ive a image memory usage of 400 mb!!! how is this possible if i dont have so many images on my layout? Are they all loaded at once?

    How big are your images?

    Remember that all images are converted to bitmap in RAM, regardless of what the original encoding was.

    So for instance, if you have a large background image of 8000x1000 png then when loaded into RAM it would use approx

    8000x1000x4 which would be 32MB just for that one background image.

    Some GPUs insist on power of 2 images so that would increase the previous image use quite a bit.

    i.e. 8192x1024x4 = 33.5MB.

  • The files from my game are gone. The game is in the Acrade, but I want to get them back (jumpy 0.10)

    Does anybody know how I can download the file to the game so I make new levels?

    This is not possible, for obvious (anti-piracy) reasons.

    The exported project cannot be reimported and converted back to the event system. If it was possible, then everyone's work would be in danger of piracy.

    This is why Ashley intentionally made the exported project as obfuscated as possible, to protect the hard work of the user.

  • I want to change it to m1ksu since that is my alias these days.

    Email outlining your reasons.

  • antares330

    Anything like this should be reported directly to Scirra rather than the public forum.

    Best to email .

  • Hi, Not been around a while.

    In 2014 I paid for a personal licence and didn't use the software for 2 years. I would like to start using construct 2 again... problem is I don't know how to find my key

    I have downloaded the free edition but not sure how to upgrade my account.

    Thanks for the help

    It should still be available from the store in the 'Your Downloads' link.

    If not, then email .

    Hello, is Construct 3 still happening? The C3 website hasn't been updated in a long time and I haven't seen any news or trailers or previews at all. Am I missing something?

    Don't think there is a need for another thread about C3 considering there is already an active thread HERE.

    Please use the existing thread.

    Locking.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Problem Description

    The sound effects do not play right away when touching an object with a sound, untiil it preloads. It won't preload properly, when I set it to.

    Steps to Reproduce Bug

    • Set an object to play a sound on the map.
    • Touch the object on the map. No sound will play.
    • Touch another object, the sound will play.

    Observed Result

    No sound played on first object.

    Expected Result

    Sound plays and preloads correctly, or preloads then plays afterwards.

    Affected Browsers

    • Chrome: (YES)
    • Others not tested, the preview wouldn't work for other browsers.

    Operating System and Service Pack

    Windows 10 latest version.

    Construct 2 Version ID

    223.

    You must follow the Beug Report Requirements if you want Ashley to investigate or he will close the report automatically.

    Also, are you sure you are using r223 as that is very old now?

  • *moved as topic not relevant to C2 - the How Do I section is for specific C2 help.

  • Natano

    Why have you reported Newt for a Warez violation twice?

    Please stop doing this.

  • anyone knows how to put a video as texture ?

    Hardmann

    This is spam as it is not at all relevant to this thread. Please don't do this again.

    Come on people - please keep it civil.

    Once a thread starts to be too personal, than it will be locked.

    Please be polite when posting.

  • Hi,

    How many layers can be added in construct 2, free edition ?

    I was not able to add more than 4 layers.

    Thanx

    Free version limitations are covered in the Manual and the comparison chart in the Store:

    [quote:24jbodcp]

    A maximum of 100 events in a project

    A maximum of 4 layers in any layout

    A maximum of 2 effects in a project

    No folder organisation in the project bar

    No event search

    No configurations bar

    No Families

    No Preview on LAN

    Not allowed to be used for commercial purposes (however, it can be used in education and other non-profit organisations)

  • The basic formula is widthxheightx4, because regardless of the type of image (jpg,png,etc) they are converted to a bitmap in RAM. Depending on how old the GPU is, a power of 2 calculation could also be be needed before calculating RAM usage.

    Example:

    Image is 2000x900 PNG

    RAM use would be approx. 2000x900x4 = 7.2MB

    If power of 2 applies then it would be: 2048x1024x4 = 8.4MB