iyenal222's Forum Posts

  • The problem is that the camera scroll with the player so invisible sprites will be left in the same place that isn't in the user window.

  • How can I detect if the user touch on the left or right (blue or red in the image) part of the user screen ?

    (explicative image, I don't use these panels in the game)

    I can't calculate it with layout touch coordinates because my layout is very big and the camera scroll with ScrollTo behavior, and I don't understand how to use Absolute touch coordinates.

    Thanks.

  • Current event added.

  • Use PNG with high DPI in AI (I adapt my vector (Microsoft Expression Design) size with the same size that I will use in C2, and after I export in PNG with this size so I don't loose quality), or use SVG with a plugin available for Construct 2.

    But remember that more your vector is complex more he use CPU at realtime.

  • Isometric prerendered.

  • The problem is that my object isn't static, the object have an force on it, I want that the object path being affected by the planets attraction. Thanks anyway !

  • Hello,

    How I can simulate gravity attraction or inverse on a object by many planets, depending by her mass :

    I have tried the rex gravitation plugin (behavior-gravitation-for-physics-behavior_t70521) but I can't do antigravitation (negative force) and Yann algorithm (black-hole-physics_t66424?start=10) but I can't do many planets.

    Current event with rex gravitation plugin :

    The object is the BluePlanet and planets are GreenPlanet.

    Thanks in advance.

  • Thanks 99Instances2Go !

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • A position already specified in comments "Columns transform initialisation" for the column 1 it's 752;700 (X;Y),when Y is 700 the object have to stop.

    I will use the MoveTo plugin, I did not know it previously. Thanks.

  • Here the full event :

    The bullet speed is already specified in the main triangle; the problem is how to stop the triangle (disable bullet) when he arrive to a given position, and applies also for other triangles that will be spawn after.

  • Hello, I have a game logic problem that block me from month :

    Scenario :

    INITIALISATION : Each cube have bullet behavior disabled.

    PROCESS : Every 5 seconds :

    An random variable is created with int value (column)

    A cube is spawned at a given position depending on the random int value

    His bullet behavior is enabled so the cube can fall

    At a given position depending on the column the cube bullet behavior is disabled.

    Here is the problem. How I can do this ?

    Here the current event sheet (a triangle is used, not a cube) :

  • But I want also to modify the instance in question coordinates on the fly. Can it be possible ?

    I was programming in C#, with Unity, gameobject variable is very useful.

  • How I can store an instance of an object in a variable, so I can assign, replace it on the fly and get instance object properties (coordinates...) directly in the Event sheet ?

    Thanks.