forked from LegoGMI/ManualeGM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path202_00_sprites.html
145 lines (113 loc) · 5.51 KB
/
202_00_sprites.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
<title>More about sprites</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body background="images/back.gif">
<!--START-->
<h1>More about sprites</h1>
When running <i>GameMaker</i> in advanced mode the
A number of advanced options exist. When you open the sprite form it will look as follows:
<p>
<img src="images/form_sprite_advanced.jpg">
<p>
A new button <b>Save Sprite</b> has appeared. With this button you can save the sprite
in a proprietary format. This format will not only store the image(s) of the sprite
but also other settings, such as collision settings and the origin. The file will have
the extension .gmspr. <i>GameMaker</i> can load such files but also the games can
load them.
<p>
At the bottom-left, you can indicate the origin of the sprite. This is the point in the
sprite that corresponds with its position in the room. When you set an instance at a
particular position, the origin of the sprite is placed there. Default it
is the top left corner of the sprite but it is sometimes more convenient
to use the center (by clicking the <b>Center</b> button)
or some other important point. You can even choose an
origin outside the sprite. You can also set the origin by clicking in the
sprite image. The origin will be shown with a cross.
<p>
Most important are the options related to collision checking. Whenever two instances
meet a collision event is generated. Collisions are checked in the following way.
Each sprite has a mask. Default this corresponds to all pixels that are not fully transparent.
When two pixels in the masks of the two sprites overlap, a collision is reported.
<p>
Sometimes you don't want precise collision checking. In this case, uncheck the
box <b>Precise collision checking</b>. Now the bounding box is used as the mask.
<p>
When the sprites has multiple subimages, default there is just a single mask that
combines the masks of all subimages. Normally this is what you want but in certain
situations you might want each subimage to have its own mask. In this case check
the box <b>Separate collision masks</b>.
<h3>Collision Masks</h3>
<p>
If you want even more control over
the collision masks, press the button <b>Modify Mask</b>. The following window
will show:
<p>
<img src="images/form_mask.jpg">
<p>
At the left top there is again the information about the sprite image. You can
show the different subimages. Also you can indicate here whether to show the
collision mask (default on). In this case, in the images at the right the mask
is shown in dark. You can also zoom in and out to get a better view.
</p>
<p>
To the right of this you can change the bounding box. Only pixels inside this bounding box are used for
the mask. Default the bounding box is automatically computed, taking the alpha tolerance
into account, separate for each subimage, when using separate collision masks. You can
also set it to the full image or you can set it to manual. In the latter case you can specify
the bounding box yourself. When set to manual you can also draw the bounding box with the
left mouse button in the image, or you can move it with the right mouse button. (Note though
that the mask is shown while drawing, not the bounding box!)
</p>
<p>
Below this you can indicate the shape of the mask. Default is precise, pixel-wise
collision checking, but you can select here also to use the bounding rectangle, a disk (or
ellipse) inside it, or a diamond shape. Rectangles or disks are is many cases better
representations of the shape. (Note that the choice has no effect on speed!)
</p>
<p>
Finally, at the left bottom you can (again) indicate whether or not there should be separate
collision masks for all subimages. (Note that if you set the bounding box manual,
a single bounding box will be used for all subimages, regardless of this setting.)
You can also indicate the tolerance with respect to the transparency. With
a higher tolerance also pixels that are partially transparent are left outside
the mask. This influences both the bounding box (when not set to manual) and the
mask for precise collision checking.
</p>
<p>
It is important to carefully decide on the collision mask you use for your sprites.
Although precise collision checking might seem the most logical option, in many
cases game play is improved by using bounding boxes or disks, or masks that are a
bit smaller than the actual sprites. If you want even further control over the mask,
note that for objects you can specify a different sprite to use as mask. In this way
you can make the collision mask completely independent of the image.
</p>
<p>
Once you are done, press <b>OK</b>. If the mask was modified, the word <b>Modified</b> will
show in the sprite form such that you are reminded that you changed some settings here.</p>
<!--HELPONLY-->
<h3>Editing Sprites</h3>
<P>
<i>GameMaker</i> has extensive possibilities to create and change your own sprites.
Information about this can be found in the following pages:
<P>
<blockquote>
<a href="202_01_editing.html">Editing your sprites</a><br>
<a href="202_02_strips.html">Strips</a><br>
<a href="202_03_individual.html">Editing individual subimages</a><br>
</blockquote>
<!--ENDHELPONLY-->
<!--END-->
</body>
</html>
<!-- KEYWORDS
collision masks
tolerance
enlarge maskk
precise collision checking
collision checking
bounding box
sprite origin
origin, sprite
-->