jayderyu's Forum Posts

  • I don't believe you can. You will need to pin small sprites with collision to the primary sprite.

  • I was trying this also. Using the physics plugin it seems you can set individual gravity. Though after having used Box2D I thought you could :|

  • the particles are just a thing and have nothing to do with it.

    I think I understand a little more of what your saying. Create a large image with a hole in it. and then turn it as needed. ok i think I got that. I can think of a few tricks to reduce the image size :)

  • scirra.com/tutorials/398/touch-stick-controllers/page-1

    It needs to be updated to support touch id's, but it works and very smooth :) No loss of input and it's ready to be user friendly. Just use good graphics :D

  • I have to admit. I have a weakness to a couple of graphical things.

    1. I'm totally lost when it comes to masks and colours. I barely understood a thing you said. But I don's understand masks at all. I will google this information up.

    2. Particles. I just don't get how to do these very well :(

    I will follow googling these paths and see what I can fine. I appreciate the pointing in the right direction :)

  • hmm. I'm going to look into that :) any suggestions on how to affect colours. Would I assume an overlay, or do i need to go through every sprite and blend a lower colour. How would I be achieving the light effects from laps or flashlight?

    I'm only asking as I have never used Canvas plugin before :D

  • meh, the problem with both of these consoles is that they are not user friendly on the input. History shows that the POINTER is the most natural input for success. Either by means of the mouse, wand or best of all touching.

    The fact that the controller is still mired in old thinking of limited controller input at the time of controller design 20 years ago. It's just not going to do well.

    However it does look like the time of of 3 console wars is going be destroyed and the the console wars will arena are being expanded into by the mobile market.

    kudo's to google and apple for eroding the isolated console market by it's mobile direction.

  • I remember that retina display problem when fiddling around with code :| I had to in the meta tags by default sale 0.5, and set my objects to retina values. worked, but report sizes were no good :(

    2046 huh. close :D

  • I'm not entirely sure what your saying?

    tree? what kind of tree. Object heirachy? The reason I think your talking about this is because of this line.

    "some games only need the single line of gravity in them with many hundreds of objects, "

    If this is the case. Then I also made the request for a Scengraph technology under the topic of [suggestion Pin] Theory or Relativity. If I'm wrong. Then I have no idea what your talking about :(

  • Personally I think HP threw in the towel a little too early with it's WebOS tablet they had going with Palm. I think an entire HTML5 front for an OS is going to be standard in the future. At least the front being 100% integrated to the OS as much as native apps.

    It's just too many hold outs with Android and especially Apple. They make there money from dev kits.

  • Well I had a game idea I want to make some time down the road. Night and Day are part of the design. The problem is that the game is aimed to be on IOS and Android as well as PC.

    As we know WebGL seems near non existence on these devices :( boooo. Are there any other techniques of opacity layering that could mimic night/day and light lamp effects. My few attempts are utter failures.

    oh why can't mobile WEBUIVIEW have WebGL :(

  • Not that I have found and I have tried. The best you can do is create the Layer Labels in the new layout and then Copy/paste.

    That way at least when you paste the objects stay on there respective layers.

    alternativly create the HUD at runtime.

  • I've been thinking about making a game to use such mechanics. So I'm interested as well. I'm going to see about creating a quickie on this tonight. If someone doesn't do it first :D

    It needs some serous tweeking before it's usable.

    dl.dropbox.com/u/14087254/throwTest.capx

    however this seems to be the direction to go. I used anywhere touch for now since tracking by checking to see if touch is on top of an object and following, just doesn't work that well. Once you start tracking you need to track by the specific touchID not if it's "inTouch".

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • 1. Yes. Though you will need a wrapper program like CocoonJS

    2. No, I don't think there is any problem. When exporting to CocoonJS everything is thrown into a zip file.

    However sometimes you need to make a tweak here and there. As an example adding Clay.io requiers inserting files into the zip package. Or as of right now CocoonJS has screencanavas setting that will improve performance, but requires tweaking the C2runtime.js.

    However, if not using Clay.io and not concerning(or instead wait until it's in) screencanvas. Then yes it's a very simple process.

  • becaused onTouched object still fires if the menu change is too fast. I had this troubled where I had an object for the first touch(ie Touch to Start). however I had a menu object on a different layout, but if I touched the start in the same place. Both objects on two different layouts would fire the event. crummy. So isTouching or onTouched will produce the same even in this case.

    My suggestions it to add a wait 0.5. That's long enough for the fire event to finish triggering. So it will trigger once, end the trigger event. then change to the new layout.