美文网首页
【转】如何设计2d平台关卡

【转】如何设计2d平台关卡

作者: JervieQin | 来源:发表于2017-09-10 10:37 被阅读0次

最近在制作一款2D平台类游戏,在网上找到这篇关卡设计理念的文章,收获颇丰,有兴趣的同学可以看看。



1. Choose a visual theme
Choose a visual theme for the level. You can go with a predetermined, game-wide theme, such as ‘Forest’, ‘Ice’, ‘Lava’, or ‘Castle’. Or go for something more creative, such as ‘Steampunk Cloning Facility’, ‘Psychologist’s Nightmare’, or ‘Cupid’s Ice cream Parlour’. Ask everyone in the team for theme ideas.
2. Make a list
Make a list of everything you want the player to experience in the level. This includes what the player does, sees, learns, hears, and encounters. The list should include specific items and general items.
Specific items usually occur once in a level.
General items occur more than once in a level.

Throughout the article the term ‘item’ is used to refer to the items of a list. These items not only include game items (power-ups, keys, and doors), but also events (finding the first locked door), enemies, and game mechanics (double-jumping).
Write down how many times each general item occurs (for example, there could be 50 coins to collect in the level, or the player might need to defeat 10 swordsmen). These numbers are estimates, and they help you to determine the level’s difficulty. For example, there could be two Tough Trolls in level 1, but four Tough Trolls in level 2. Let everyone in the team contribute to the list.
The following examples are also used in the images later in this article:
Specific items:
Meet first enemy.
Find first power-up.
Learn about double-jumping.
Learn about destructible environments.
Find first locked door.
Find first key to open the locked door.
Pull lever to activate the moving platform.

General items:
Foot soldier enemies (x30)
Gun turret enemies (x10)
Power-ups (x30)
Moving platforms (x3)
Locked doors (x2)
Keys (x2)

3. Make a rough layout
Draw a very rough layout of the entire level. This layout should show the path that the player will take through the level. Think of it as designing the street layout of a city, but ignoring the buildings.
You may end up doing several layouts before you have one that you’re happy with. Usually, the reason for changing the layout is one or more of these:
Some areas are too big or small.
Some lines are too straight and too long (i.e. boring).
The overall layout is too simple or too complex.
The overall layout looks uninteresting.

3_rough_layout.png

An example of the rough layout of an entire level.
4. Make rough sketches for the specific items
Players will need to find each item in the list that you created in step 2 somewhere in the level. They might also find some items in the same area. Make rough sketches of each area in which the player will find the specific items in the list.
Use symbols to identify the various objects in the level, for example, E for ‘Enemy’, P for `Power-up’, and K for ‘Key’. Also make notes on the sketches.
Distinguish clearly between negative and positive space when you do the sketches. The negative spaces (white in the sketches) are the areas where the player can move, and the positive spaces (diagonal lines in the sketches) are things like floors, walls and platforms where the player cannot move.
These sketches help you focus on the layout of each small area, without having to worry about where they fit in the overall layout of the level. Think of it as focusing on designing a building and ignoring its location in the city.
You may make sketches for some or all of the general items, but it is not necessary. The general items are usually moved around when you design the detailed layout or play test the level, so they may end up in completely different areas than you originally planned.
Examples of rough sketches
![4_item1]

4_item1.png 4_item2.png

Specific item 1: Meet first enemy.
Specific item 2: Find first power-up.

4_item3.png 4_item4.png

Specific item 3: Learn about double-jumping.
Specific item 4: Learn about destructible environments.

4_item5.png 4_item6.png

Specific item 5: Find first locked door.
Specific item 6: Find first key to open the locked door.

4_item7.png

Specific item 7: Pull lever to activate the moving platform.
5. Make a detailed layout
Draw a detailed layout of the level. The detailed layout uses the rough layout (from step 3) as a guideline. It includes all the specific items (copying the rough sketches from the previous step) and the general items. When you copy the rough sketches of the specific items, you may need to change them slightly (for example, change the size, flip it horizontally).
Place as many of the general items in the detailed layout as you can. You can add the remaining general items when you build the level using a level editor.
When you place the items, keep in mind the path that the player will take through the level. Certain items may need to be placed in a specific order, such as a weapon being placed somewhere before the player encounters the first enemy.

5_layout_big.png

An example of a detailed layout.

5_layout_items_big.png

The locations of the specific items on the detailed layout.
6. Build the initial layout
Use a level editor to build the level’s initial layout, using the detailed layout (from the previous step) as a blueprint. You may need to change the sizes of some areas when you build the level. This happens because the layout sketch is usually not drawn exactly to scale. Also use the editor to add all the outstanding general items to the level. For example, your list might contain 20 enemies, but the detailed layout has only 15 enemies. Add the remaining 5 at this stage.
First build the initial layout before you add the visual details. In other words, use limited graphics for the initial layout, to make it easy to change things if you need to. For example, if you have five grass images, use only one for the initial layout. You can add the other four in step 8 when you decorate the level.
At this point the final graphics for the level may be incomplete, in which case you can use placeholder graphics. It is a good idea if the placeholder graphics have similar colours to those of the final graphics, because the colours affect the feel of the level.
7. Play the level
The initial layout is for playing the level, so that you can determine if it is fun and how long it will take to play through the level. Play the level and change the layout until is it fun and balanced. Let other people play it as well.
Changing the layout may include the following:
Move, add. or delete platforms to make jumps easier or more challenging.
Move, add, or delete power-ups to balance the amount available.
Move, add, or delete enemies to make the level easier or more challenging.

Important note: By the time you design and build your first level, you should already have prototyped and finalized the gameplay mechanics using temporary test levels. If your gameplay has not been finalised by this time, then you risk having to change your levels when the gameplay changes. For example, if you decide to make the player jump higher, then you will have to move many platforms to accommodate the new jump height. Changing fundamental gameplay usually has a ripple effect.
8. Decorate the level
Once you’re happy with the level’s layout and once it’s fun to play, then add the details. This includes adding all the final graphics and audio. Play the level again to make sure that it still feels the same – or better – after all the graphics have been added. There’s a good chance that the level will feel different. It should feel better with the final graphics, but sometimes it may feel worse. For example, the placeholder background might have been a single colour, but the final background might be a detailed image that makes it difficult to see the enemies, in which case you will have to tone down the background or change the enemies, whichever will be quicker.

相关文章

  • 【转】如何设计2d平台关卡

    最近在制作一款2D平台类游戏,在网上找到这篇关卡设计理念的文章,收获颇丰,有兴趣的同学可以看看。 Througho...

  • 游戏策划(七):任务与关卡设计

    本章主要讲述了游戏关卡制作的相关事项,包括关卡设计的含义、关卡的任务情节设计、关卡的本质、关卡的设计要素与关卡的制...

  • 教育游戏关卡设计

    游戏是基于体验的互动产品,因此游戏的世界观设计和关卡设计必须从讲故事的角度出发。 教育游戏中的关卡如何讲好故事?关...

  • Unity官方教程 2D Roguelike(3):移动逻辑

    前言 在Unity官方教程 2D Roguelike(2):生成关卡中,我们已经生成了随机关卡,接下来就是让大胡子...

  • 关卡设计

    提高关卡的重玩性 原型:斯金纳箱子实验 随机性与可操作性 随机性:体现在传统游戏中的:随机产出、随机掉落。 可操作...

  • 关卡设计

    1.white board 2.gray box 3.Pipeline 前景与背景 graybox设计方法 官方插...

  • 练习6,排版设计,关卡地图界面

    练习6,排版设计,关卡地图界面 完成一个关卡地图,地图中至少要呈现3个关卡,关卡状态随意,其他关卡可以隐藏或虚化或...

  • 雷曼新作《喷射侠》,老少咸宜玩转三把神枪

    《Splasher》又名《喷射侠》,作为一款2D平台动作游戏最近登上了Steam平台。说起2D平台动作游戏,你脑中...

  • Unity-DragonBones 浅尝辄止记录

    DragonBones DragonBones是白鹭时代推出的面向设计师的2D游戏动画和富媒体内容创作平台,他提供...

  • 作业2,图形设计,关卡的成就变化

    作业2,图形设计,关卡的成就变化 命题:选择一个游戏的关卡地图,对其中三个关卡(先完成一个)进行成就的图形设计,要...

网友评论

      本文标题:【转】如何设计2d平台关卡

      本文链接:https://www.haomeiwen.com/subject/dduzjxtx.html