BluePhaze's Forum Posts

  • ON the start of the layout are you reading back in the items from the webstorage and setting the lights back to on, etc... based on the info? I can't open the capx as I am at work, but that was my first thought...

  • PhoneGap is more geared toward paltform compatibility and exposing device specific API's than it is with boosting performance. Though they say they are looking at accelerators for different platforms going forward...

  • THis may be what you are looking for... Analog Stick Trouble

  • First you may want to post requests like this to the "How Do I..." forum, this is the Help Wanted forum which is actually for hiring or getting hired to help others with games.

    Second, go through the tutorials and manual as many questions that you have when first starting out are answered there already. In particular for you check the Ghost Shooter Rain demo... it has reflections...

  • I just wanted to add my thanks for all your work on this thehen, once I finish the Windows 8 version of my current game, I will be focusing on making it work well on Windows Phone. You have done a great deal to get me that much closer to the goal!

  • Hey lucid I just wanted to thank you again for all your hard work on this. I know this have been a labor of love for long before the kickstarter happened.

    I have finally gotten to the point in my current game development where I am animating my characters, etc... Spriter is making it so much faster and a million times better looking than creating animations with sprite sheets... Do you guys have a simple logo, etc... that I can include in my splash screens to help promote the product when I publish my games? Similar to what you see on console/PC games where the initial splash screen shows the engines, etc... that were used in creating the game...

    Also, any word on the starter sprite packs for those who have already purchased the Pro license?

  • You can do something like this:

    Conditions:

    Player is on floor

    Button Pressed A

    Simulate Platform Jump

    Then for the double jump you do similar but

    If player is NOT on floor

    A button Pressed

    Set Player Vector Y -500...

    You can also check my tutorials for more features as well, you can find a link in my signature.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Yes, or you can have collision checks that test if the player is higher than a certain y value of the building and if so move the building up or down a layer depending on if you need it in front or behind the player. Someone posted a system for doing this in the forums I just don't have the link handy.

  • You can try creating your own system or you can use something like clay.io which has an achievements system. If you do your own you need to define what they are, create the logic for them and come up with a system to store them. It can be done, but takes a bit of work.

  • Reading the manual gives points, posting on the forums(don't spam useless comments though). Vote on articles, etc... look at the rewards/achievements list on the site as they all give points... basically be useful and interact with others on proactive ways. The same way you gain reputation in the real world...

  • The cornering issue and all air juggling in that case may be resolved with a hit counter variable. If player is not on floor and gets hit, increment the variable and then set the player to not take damage or react to being hit until they hit the ground. Keep them immune till they stand up. Then reset the variable to 0. The variable will give you a way to implement limited air/juggle combos as well.

    If wanted you could even go slow motion for the final hit of the combo and the fall afterward.

    Just an idea...

  • Nice work! Mist have been a pain. So are you having them move toward the next closest waypoint, or setting a variable that tells them what the next waypoint is?

  • Not quite sure on that one. Usually I see stuff like that when the origin points for pinning object together are wrong or if the players collision polygon changes during the animation. If I get time when I get home tonight I can try and see if I can find the issue.

    On another note, I haven't looked at the updated CAPX yet since I am at work, but you may want to try using the pinned behavior instead of setting the objects x, y coordinates to another object. I may be remembering this wrong, but I thought you were using the x, y coordinates to stick objects to eachother...

  • I was referring to events in the event sheet that happen in response to something, or they may be called conditions. Instead of constantly testing for something, you can simply create a condition like:

    On Z pressed:

    If down arrow is pressed Slide

    Else

    Jump

    That way every tick it's not testing for your condition. When you hit the Z key, it checks to see if the other conditions are true, then reacts. That way when the Z key is not being pressed, you are not wasting processing by looking for it.

    Some types of events are triggered by certain things happening like key presses. For these you don't have to check every tick. Every tick should be used as little as possible. The more things that run every tick, the more your code has to check for and it doesn't scale well once you start getting multiple enemies, etc...

  • On a side note, how are you handling the pathing for the enemies?