Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
think i'll do this. ty
You need to use draw_sprite_ext for your logo:
draw_sprite_ext( sprite, subimg, x, y, xscale, yscale, rot, colour, fade_alpha );
For the alpha, use a variable such as (fade_alpha) like I have inserted above.
Now, however you change the code for fade_alpha will change the alpha of your logo.
In the create event, set fade_alpha to zero so you can't see it..
Create Event:
fade_alpha = 0;
Step Event:
fade_alpha += 0.009;
if (fade_alpha >= 1)
{
fade_alpha -= 0.009;
}
This isn't the exact code you want, but hopefully you get the idea. You could get the accurate timing you want by using a variable for a timer or just use alarms. Personally I like to use a variable and create my own timers.