mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
f4b4996540
+ Fixed some convolution matrices. + Fixed editors_draw_sprite_tiled & control_tool for tiled mode in transparent layers (non-Background). + Added gfxobj_id. - Removed referenced stock (replaced with the ImageRef structure). + Fixed the whole 'target' stuff between effects and target_button. + Fixed app_get_fg_color & app_get_bg_color to return the black color instead of mask when a `Background' layer is actived. + Added get_color_for_layer & fixup_color_for_layer.
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
<!-- ASE - Allegro Sprite Editor -->
|
|
<!-- Copyright (C) 2001-2008 by David A. Capello -->
|
|
<jinete>
|
|
<window text="Options" name="options">
|
|
<box vertical>
|
|
<box vertical>
|
|
|
|
<label text="Mouse Speed:" />
|
|
<box horizontal>
|
|
<box vertical homogeneous>
|
|
<label text="X:" />
|
|
<label text="Y:" />
|
|
</box>
|
|
<box vertical homogeneous expansive>
|
|
<slider min="-8" max="8" name="mouse_x" />
|
|
<slider min="-8" max="8" name="mouse_y" />
|
|
</box>
|
|
</box>
|
|
<check text="Lock X/Y" name="lock_axis" />
|
|
|
|
<separator horizontal />
|
|
|
|
<check text="Smooth auto-scroll" name="smooth" />
|
|
<check text="Real-time ordered dithering" name="dither" />
|
|
<check text="2 Click Movement" name="move_click2" />
|
|
<check text="2 Click Drawing" name="draw_click2" />
|
|
|
|
<box horizontal>
|
|
<label text="Undo size limit:" />
|
|
<entry name="undo_size_limit" maxsize="4" tooltip="Limit of memory to be used\nfor undo information per sprite.\nSpecified in megabytes." />
|
|
<label text="M" />
|
|
</box>
|
|
|
|
</box>
|
|
|
|
<box horizontal>
|
|
<box horizontal expansive />
|
|
<box horizontal homogeneous>
|
|
<button text="&OK" name="button_ok" magnetic width="60" />
|
|
<button text="&Cancel" />
|
|
</box>
|
|
</box>
|
|
</box>
|
|
</window>
|
|
</jinete>
|