jobel's Recent Forum Activity

  • does the first target spawn? are any copies of the Target on the screen at anytime?

    if you want to specify a certain target (one of the copies of your Target object) you'll need to reference by UID. Otherwise if you just reference the Target object, that will pick ALL of the objects that are Targets.

  • not sure what you mean by "section". what has to happen in the game for the player to trigger a boss?

    The simplest way to make code happen only when you want it to is with a "flag". So make a global variable called "BossFlag=0"

    whenever you want the boss to come out Set BossFlag to 1.

    then in an event make IF BossFlag=1 and add actions, add Trigger Once to the condition if it's the kind of code you only want triggered once.. like Create BossSprite. Otherwise if it's attack patterns you want to have then you need another event that will trigger every tick. So in that event It would say: IF BossFlag (without the Trigger Once) then add your code that will make the boss do what you want it to do (every tick). You could also make a group that you active or deactivate. I like those for top-level events like: Boss.Turret.OnShoot -> Action..etc

  • the thumbstick has a range of values which tells you where exactly the stick is.. you can use that range to effect how much speed you add to the player.

    -100-----0-----100

    so a little to the left is like -20, all the way left is -100, midway to the right is 50 etc...

    if you actually mean press down, as in click the stick.. that won't work because its merely a button - on/off and does not have a pressure sensitive range. It's not like a midi keyboard with velocity values...

  • I realize this is an old thread but is this addon working or supported anymore? should I not use it in my project?

  • I also found this website : http://easings.net/fr quite useful to see what the current easing fonctions of the plugin do instead of trying them one by one.

    nice find! a great reference to bookmark!

  • great idea!

  • use SetSize... and you just have to do a bunch of checks..

    you have to come up with an algorithm for changing sizes, like check the height of the colliding object and do a calculation that sets the player to the correct size.

    or a better idea is to give the object an instance variable, and that will determine whether to grow or shrink.

    if you don't want to deal with Height and Width, then just use scale.

    there is no Player.scale so you have to make one manually. Just set an instance variable on the Player and everytime you effect it do:

    Set Player Scale to self.scale

    so a 9x9 object would have an instance variable change_amount=0.1, your 10x11 would have change_amount=-0.1 then for the opacity you'd have change_amount=self.scale * 0.1

    then set Player.scale to Player.scale + Object.change_amount

    then set Player Scale to self.scale

  • so you want to a toggle switch.

    I do this all the time, depending on what triggers it, it should be fine as is. If this code is in a "onclick" event, it's only going through it once, so you can just have 2 "ifs".

    if it's in an area where it's getting triggered all the time, then you would just use an Else statement.

    It all depends in what is triggering it.

  • I can't tell from that snippet what you are trying to do...

  • korbaach ahh thanks, I'm already using them (as temp animations) I just didn't recognize the laser one you had in the capx. thanks..

    I was looking for an artist how can animate like that.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • korbaach where did you get that laser sprite animation? I need a few animations similar to that...

  • yeah for random frames I always use: choose(1,2,3)

    but I think you can do round(random(0,2)) to give you values 0,1,2 but it ends up not being that random since 0.6-1.4 all become 1 etc.. whereas only values below 0.4 end up being 0.

jobel's avatar

jobel

Member since 27 Jul, 2013

Twitter
jobel has 8 followers

Connect with jobel

Trophy Case

  • 11-Year Club
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Forum Hero Made 1,000 posts in the forums
  • Regular Visitor Visited Construct.net 7 days in a row
  • RTFM Read the fabulous manual
  • x4
    Great Comment One of your comments gets 3 upvotes
  • Email Verified

Progress

18/44
How to earn trophies