arcalaus's Forum Posts

  • I can't find any documentation about how to get the value of array Array at position X,Y.

    What properties does an Array have? In the "loop and array tutorial", I only find CurrentX, CurrentY and CurrentValue properties, but what I'm looking for is sort of Array(x,y).value (so I can compare values outside current X and current Y).

    Should I move indices with Array.CurrentX and Array.CurrentY and get Array.CurrentValue?

  • I thought I would be simple just by inserting a

    <PHP>echo $filename</PHP>

    into the generated js file. My main dread was about php security--- I know there exist many php bundles capable of image converting in the fly, but, as I don't have much php experience, I don't know how to deal with web security.

  • Thanks for the idea about using "pin".

    There is also something that annoys me: In my first approach to this, I used both "solid" and "physics", making solid some parts of body.

    But now I see that all objects with physics behaviour are "solid", unless you delete their collision polygon.

  • I have the same bug. 4 times today, Constructor crashed when inserting "Set variable" with global variable. 1 time it crashed also when inserting "set variable" with local variable.

    ---------------------------

    Construct 2 Check failure

    ---------------------------

    Check failure! This is probably a bug:

    Returning NULL event variable

    Condition: event_var != NULL

    File: Projects\Parameters.cpp

    Line: 285

    Function: class EventVariable *__thiscall EventParameter::GetEventVariable(void) const

    Build: release 66 (32-bit) checked

    Component: Construct 2 IDE

    (Last Win32 error: 0)

  • I'm so stupid... The answer is: use the "Apply to all frames", guy!

    Thanks for your patience.

  • Hi!

    I'm new to Constructor 2 and I'm still learning all the stuff, but I find some things I find weird.

    I'm doing a kind of puppet toy with Constructor. I want to allow user to upload a photo, cut it with a mask, and use it as puppet head.

    Can I do that with facebook object?

    If not, does someone known some safe but easy to install php code to allow users upload photos, resize them, rename them with random name (so I can store many photos at a time in the web), crop it with a mask, and return that filename so I can insert it in the html5 javascript code?

  • Try Construct 3

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

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

    I'm new to Constructor 2 and I'm still learning all the stuff, but I find some things I find weird.

    I'm doing a kind of puppet toy with Constructor. I want to change the "clothes" by means of changing current animation frame. But, when I insert a new animation frame, all image points I use to adjust the different parts are lost.

    Am I the only one wanting to duplicate not only image but also image points and collision polygon?