trueicecold's Forum Posts

  • Suppose I have a 46*46 sprite, and I want a single digit text right in the middle on that sprite.

    I created a text as well, gave it the exact same size, horizontally and vertically centered, and put them both in a container.

    Problem is - the sprite uses physics, so when testing, the text is static, and the Sprite goes on bouncing for a while...

    Any way of making them behave the same, like they were one single object?

    Thanks!

  • <div class="post-censorship-notice">trueicecold can only post plain text URLS when they have 300 rep. 1 URLS removed. Why?</div>

    The best is to use there

    but a good old email gets the quickest response

    support@scirra.com[/code:149oj18b]
    

    Thanks, just sent an Email

  • why you contact them?

    I bought a personal edition from Steam, but it forces me to install steam on other computer I work on, which is kinda bad

    Wanted to know if I can get a license file if I provide a proof of purchase. That way I can also decide when to download beta version and when not.

    Explorer file associations work better with the standalone version as well...

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I've tried PMing Ashley with no response, sent a message on their facebook page AND posted there... still, no response from any means...

  • Ahhh this is great stuff! With functions, I feel at home

    Mission accomplished with ease

    Thank you very much, everyone!

  • I was looking into arrays, so I created a 2d array, looping it to draw a grid of "Cube" sprites.

    Each cube has an X and a Y variables to state their position inside the array.

    When clicking on a cube, I want to check the cube near it (X+1, or Y-1 etc...)

    Is there a "Cube[X-1 && Y-1]" way to get it?

    Transition from real coding to event sheet really confuses me :/

    Thanks!

  • > How did you move to standalone? I didn't get any serial number... can I ask the scirra team for a license?

    >

    Brought business license - using upgrade

    Thanks, I don't need a business license, I only need a proper license file for my steam purchase... :/

  • How did you move to standalone? I didn't get any serial number... can I ask the scirra team for a license?

  • Sorry for the terrible bump, figured it'd be better than opening a new one about it..

    I purchased Construct 2 Personal Edition few days ago, and I'm encountering the same "open capx file" issue... While others reverted to using the non-steam edition, I can't do that, since I don't have a license file after purchasing it from Steam...

    Any news about this issue?

  • I read ahead about event sheet runtime, and saw it runs endless from top to bottom, so I guess it keeps creating them because the loop occurs again. so I added a "on start of layout" as the first condition, and all works just fine

  • I've recently bought Scirra personal edition, so I'm sorry if I sound kinda n00b

    I'm looking at arrays right now, and I'm simply trying to draw a 3*3 grid. I got a sprite called Cube, so in the events sheet I put:

    System-For "GridCols" from 0 to 3
        System-For "GridRows" from 0 to 3 -> System-Create object Cube on layer 0 at (loopindex("GridRows")*50, loopindex("GridCols")*50)
    [/code:3lebd4bs]
    
    it does draw the grid but debugging it shows inifite objects being created... am I missing something?
    
    Thanks!