R0J0hound's Recent Forum Activity

  • Right, forces and impulses are relative to the object, object rotation is ignored. If you want a force/impulse to a particular layout position use polar with the angle(self.x,self.y, posX, posY) expression.

  • That should be right. By definition impulse=force*time. So to get the force dividing by the time (1/30).

  • To me it's just another file format. It looks like it's been ported to javascript here:

    http://www.wothke.ch/AdLibido/

    It likely can be used in a similar manner to the stuff in that other topic.

  • Or you can make the local variable "static" so it saves it's value.

  • There's no plugin but you can play mod files with examples here:

  • The physics is updated every frame. 1/30 just means the amount of time simulated in a frame.

    It looks like it's just a difference between the libraries. It may be corrected in a newer version of the chipmunk library since it changed it's collision detection code. Unfortunately there isn't an updated js port.

  • anpur

    Just to point out, the same simplifications you did by typing can be done in events by using families.

  • Drawing with effects is currently an incomplete hybrid of how c2 internally draws them. The edge problem likely isn't fixed. The plugin needs to set the proper bounds for drawing.

    I initially had o's instead of zeros in my username, but I lost the password and no longer had that email. It only has maybe 3 posts, and I imagine is a pm graveyard.

  • Somebody

    It uses a texture the same size as the paster object's texture. It's simpler since it can be created once. If the size of the object being pasted in was used the texture would have to be created and destroyed per object pasted. Also it would crash if you tried to paste in an object larger than the supported texture size.

    That being said, I'll probably make it so the second texture will only be created once an object with an effect is pasted to save memory when it's not needed.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Fixed the "paste object" action. It was a typo. Now it also uses an object's bounding box to cull instead of it's collision polygon.

    Did the preliminaries for pasting objects with effects and transparency. Not working quite right for some reason, but it'll have to do for now. A side effect is paster object's now need twice as much vram.

    The internal process is:

    1. draw to a blank off-screen texture with an effect.

    2. draw that texture to the paster's texture with opacity.

  • Update 2.2b

    Download in first post.

    Fixed: "idle speed threshold" action was broken.

  • Slide joints should be like pin joints, but you specify a minimum and maximum distance instead of using the distance between anchor points.