(не показаны 2 промежуточные версии этого же участника)
Строка 1:
Строка 1:
{{Wiki Standards|Unprofessional, more description needed|date=November 2019}}
{{Scripting Tutorials
{{about|how to make a scrolling platformer|a basic platformer tutorial|How to Make a Basic Platformer|advanced platformer physics|Advanced Platformer Physics}}
|Description=Руководство по скроллингу
This article covers a step-by-step process about how to make a '''[[Scrolling Platformer]]'''. A scrolling platformer is a type of platformer where the camera follows the player as they move through the level(s).
|Field_of_knowledge=Математика
|FieldActivity=Computational Thinker
|Возрастная категория=12
}}
==Coding the Player Sprite==
==Coding the Player Sprite==
To code the movement of the player, the following scripts need to be made. All scripts in this section are to go in the 'Player' sprite.
To code the movement of the player, the following scripts need to be made. All scripts in this section are to go in the 'Player' sprite.
{{note|Variables in capital form (e.g. "SCROLL X" and "SCROLL Y") are global variables, and those lowercase (e.g. "x" and "y") are made with the "For this sprite only" option selected.}}
To code the movement of the player, the following scripts need to be made. All scripts in this section are to go in the 'Player' sprite.
Coding the Platforms Sprite
Once the player's code has been completed, the ground sprite (called 'platforms' here) needs to be added in order to create a scrolling effect. The following scripts go in the 'platforms' sprite.
Coding the Danger Sprite
To code the danger sprite, simply duplicate the "platforms" sprite and replace all the levels only with the dangerous elements that would hurt the player. Шаблон:Note
Coding the Portal
Now that everything is made, a way to go to the next level needs to be made.
Adding Collectibles
Collectibles can be added to the game to make it more interesting. They are objects that need to be collected in order to achieve a certain goal. The code to make them is shown below:
Transforming a Basic Platformer
Often, Scratchers make basic platformers before they make a scrolling platformer, and they may want to use their old script to make a scrolling platformer. To do this, the "ground" sprite would move with the player. Making a script to do this is simple: