Kyatric's Forum Posts

  • You do not have permission to view this post

  • Every tick during the time between release and collision, so the trajectory is smooth and adapted to the current positions during their evolution.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Yes, you need to configure your "input" to specifically act to the condition "left/right arrow is down" and "up arrow is down".

  • You save your project as a local file (https://www.construct.net/en/make-games/manuals/construct-3/overview/saving-sharing-projects)

    You host that file on an online hosting service.

    You post the public link to the file that the service provides.

  • Example c3p

    Removed the default controls of the platformer behavior and used an instance variable to set the direction where to jump to.

    It is not perfect, it currently requires to first go in a direction (left or right) before jumping, but it still does display the idea on how to do it.

  • Sending a mail to the actual team that actually handles the reviewing and knows the actual reasons for the reject sounds like a good idea.

  • You can use the "Edit" option in the banner of your post if you want to modify something you already wrote, preventing posting multiple posts this way.

    As I did mention previously, post your project file for further investigation.

  • Or you update to the actual stable r267 - scirra.com/construct2/releases/r267/download - that is the latest stable release available and will read projects made in r266 without problem.

  • It is indicated in the Bullet behavior's manual article :

    Set angle of motion

    Set the angle the bullet is currently moving at, in degrees. Note: when the speed is 0, the angle of motion is always 0 and cannot be changed, since there is no motion. Therefore setting the angle of motion then the speed does not work if the object is stopped. Instead, set the speed first and then the angle of motion.

    No motion, no angle of motion, speed must be set first.

    When the speed is set to 0, there is no more angle of motion.

    -> Sprite: Set Bullet speed to Pause ? 0 : 500

    -> Sprite: Set Bullet angle of motion to 90 degrees

    Does the job of keeping the sprite moving toward the bottom.

  • Please consider making a bug report :

    https://github.com/Scirra/Construct.net-website-bugs

    Your issue will be investigated this way.

  • The Z Order bar indeed does display accordingly to the selected object.

    When you click in the layout view where there is not an instance of an object, the Z order bar's title will indicate "Showing all".

    And when you select an instance of an object "covering"/in collision with other instances/object types, all those will appear in the bar, and the title will indicate "Showing subset".

    At last, holding the tab key pressed and clicking on instances that are covered, allow you to select instances at a different Z order that a single regular selection would not select as being underneath a covering instance.

  • It seems you are using a 2 dimensions array.

    Nevertheless, you never set the dimension of your array to accept this.

    At some point, at the very beginning of your game, you need to set the size of your LevelArray object to be width 12 (as you have 12 icons of levels) and height 2 (as you have the number of stars sitting in LevelArray.At(X,0) and the status in LevelArray.At(X,1)).

    You also need to modify event 4 in "Global" as it is setting a value in a one dimension array instead of a 2 dimensions array.

    Modify the condition :

    int(LevelArray.At(SelectedLevel,0))<= CollectedStar

    Modify the action :

    LevelArray: Set value at (SelectedLevel, 0) to CollectedStar

    This should help making everything related to your array work as long as you are in your game's execution.

    Capx corrected in R266

  • Place the "Simulate" action for the Killer before the System:Create object action.

    You can also remove the "pick all condition" it should work.

    You will first move all existing instances of Killer, and then create a new one at a random spot.

    If you are still encountering issues, consider posting your actual project for further investigation.