lionz's Forum Posts

  • $1,000,000, which includes a postcard with a personalised message from Scirra staff.

    • Post link icon

    I simply can't justify $100 annually on something I won't use all time.

    That's just a personal thing for you then. If you are using it more than once a year then you will find that the $100/year becomes more reasonable.

  • Argh the clickbait title. Yeah I don't see a problem, I think even C2 is worth an annual subscription, I would still pay if it was annual. It's powerful software and allows you to create a game hassle-free, always worth it.

  • > Construct 2 will continue to receive updates as they have been for the foreseeable future. Exactly as has been in the past, if critical parts break they will be fixed and updates given to everyone free of charge.

    >

    This is too vague. A game can take 5+ years especially for someone that's not a full time game creator.

    If for some reason C2 support is discontinued, at least you know it'll import ok into C3 so nothing is really lost and you can continue working on your game.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • sounds interesting but the link doesn't work.

  • Mr. Gyro

  • Yeah add both the behaviours but set 8-direction to use default controls:No. This is just one example of getting blocked by solids.

  • No you said pushed so I used pushed What I mean is don't just trigger it once because it will moveTo the x,y at the time it was pressed, you can use every tick to constantly moveTo the object position. If you want it to constantly moveTo the object after a button press you can toggle a variable, if pressed=yes then moveTo object.

  • Yes I've encountered this before. You'll need to put a touch to play screen or something similar in before that intro movie. From ze manual :

    Mobile limitations

    Safari on iOS and Chrome for Android share a limitation in playing music. While sound effects can be played at any time, music is only allowed to start playing when the user touches the screen. This is a limitation in the browsers themselves. As a result, if you play music on the start of layout, you may find in these browsers it does not actually start until the next touch.

    Safari on iOS has a further limitation that no audio can play at all until the first touch. In other words, audio starts off muted and the first touch unmutes audio playback.

    Usually you do not need to handle this in your events. If you try to play sound or music on 'start of layout', the audio object will automatically queue it up for playback the next time the user touches the screen. However you should be aware of this when designing your game. If the first touch changes layout or stops the music, then the music may never be heard. You may want to start playback then encourage the user to touch the screen with a 'Play' icon or something similar.

  • System save will save the current state of the game, like it's a screenshot, so will jump back to the exact point where it was saved. If you're talking about loading background data then look at local storage, there's the manual and plenty of tutorials about.

  • Rather than trigger it once on the button push just moveTo the object constantly so it updates the right location. Or you can use pathfinding to make your way to the object.

  • If for some reason you want to set up something where you show only when the variable changes you could use a comparison variable.

    Var1 = 20. (changes)

    Var2 = 20.

    If Var1 is not equal to Var2, set text to Var1.

    Set Var2 = Var1.

  • Set text to variable every tick always shows the current value of the variable, is that what you want? Or do you mean update it ONLY when it changes?

  • I would do it by having the GV for speed set to self+random(x,x) and then with the on created disc event have the speed initially as (50,80)+GV where GV is initially 0 but then increasing to a random amount on every number of discs destroyed. That way also if you want to have different speeds for different discs or for example, destroying 10 large discs only increases the speed for large discs, then you can have seperate GVs, so speed is (50,80)+GV, (60,90)+GV2.

    To break it down....

    Created LG disc at speed (50,80)+GVspeed

    On (GV)LGdestroyed=20, set GVspeed to self+random(5,20)

    Now when a new LG disc is created, speed is set at random(50,80)+random(5,20)

  • > Yeah I like that style but tough to make in C2. I've seen some examples about for isometric, usually very complex. I'm trying a standard top down view for mine.

    >

    Yea, the math required to fake a coaster going around a simple loop in 2D is a bit extreme.

    Well in C2 I would've just played sprite animations of rides. I know the isometric view is possible but I don't think I'll look into it yet. I've decided on an RTS now anyway as it's open to changing the theme to something unique.