R0J0hound's Recent Forum Activity

  • How's this:

    https://dl.dropboxusercontent.com/u/5426011/examples20/bitwise_tilemap.capx

    If you want tiles you placed in the editor to autotile you'll have to call "bitwise update" for each tile at the start of the layout.

  • Tinkering around with this all you need is a object with the drag and drop behavior, objects pinned to that and a layer to do the masking. The extent of the math needed is a clamp() to limit the range of scrolling. Unless of course you want a widget on the right that indicates the scroll position, then you'll need a bit more math.

    https://dl.dropboxusercontent.com/u/5426011/examples20/scrollbox.capx

    enjoy.

  • Actually after re-reading the previous posts I realize that my post is redundant because LittleStain said the same thing before me. My apologies.

  • You're adding floor(0.1) or 0 to the variable so it won't ever change.

    Just add 0.1 to your variable and set the text to floor(variable1) to do what you want.

  • Well there shouldn't be a limit. Actually I think this may be bug that comes up from time to time where objects in the editor have conflicts with their id's. I made a utility to fix caps with that issue. Here's the download:

    https://dl.dropboxusercontent.com/u/5426011/utility/addobjfix.zip

    To use it extract it and put your cap file in the same folder.

    Then open "addobjfix.cap" and edit the script so instead of this:

    #------------------------
    #------------------------
    # change to your filename.
    filename='wewe1.cap'
    #------------------------
    #------------------------

    wewe1.cap is replaced by the name of your cap.

    Finally run the project and a fixed copy of your cap will be made.

  • I like to take a visual approach. Given that you're putting the values in a 2d grid, I imagine you may eventually create sprites to visualize it. So why not create the sprites with 36 animation frames for each value and have a animation speed of 0. You can either create the grid of sprites in the editor or use events to make it. The events would like the following.

    Start of layout:

    --- destroy sprite

    Start of layout:

    for "x" from 0 to 5:

    for "y" from 0 to 5:

    --- create sprite at (loopindex("x")*32+200, loopindex("y")*32+200)

    Start of layout:

    for each sprite ordered by random(1) ascending:

    ---- set animation frame to loopindex

  • It's in r153 beta which was just released.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Apply an additional force to move the object to a 45 degree direction:

    ex:

    Apply force -10*(spring_angle-45) at angle spring_angle+90

    10 is the strength and 45 is the target angle in the range of (-180,180).

    I suppose it could use a damping force as well...

  • You have to use the newline expression when setting text with events. It's the same throughout C2.

    ex.

    "first line" & newline & "second line."

  • Haha indeed...

    Anyway I wish you luck. A program with more stock gui manipulation may be helpful for your case. If you don't mind diving into coding I hear c# has nice gui capabilities and good gui designer to boot. C2 could likely do the kinds of programs you had in mind but as you may have noticed you'd have to make most of the gui stuff from scratch. Which isn't too bad since it gives you finer control of what it does.

  • There is no json plugin. One option is making your data match the format os some plugin's .toJSON expression then loading that back into the plugin. You can also use the "execute javascript" action and expressions of the browser object.

    Here's a starting point:

    https://dl.dropboxusercontent.com/u/5426011/examples20/json_parse.capx

    It's then your responsibility to make sure you have inputted everything correctly otherwise you will get errors.

    Refer to this tutorial for more info:

    http://www.w3schools.com/json/json_eval.asp

  • K, I think the answer is yes as I don't get any errors.

    yep.

    o I use Ajax for this, or should I create functions in code to do these?

    Whichever you can use to get it to work. I'm not too familiar with ajax calls but it may be simpler to use the plugin if there are edge cases it handles. But again I have a knowledge gap about that that you can probably find alot of resources about with google.

R0J0hound's avatar

R0J0hound

Member since 15 Jun, 2009

Twitter
R0J0hound has 157 followers

Connect with R0J0hound