Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
1 registered members (TipmyPip), 18,633 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
SplashScreens #387266
11/16/11 12:02
11/16/11 12:02
Joined: Nov 2011
Posts: 139
India
Yashas Offline OP
Member
Yashas  Offline OP
Member

Joined: Nov 2011
Posts: 139
India
I need to make a splashscreen fade and appear or dissappear.
For example:Gamestudio Logo at the startup of a game.


Keep smiling laugh
http://translation.babylon.com/ - Translate many languages
Re: SplashScreens [Re: Yashas] #387274
11/16/11 13:31
11/16/11 13:31
Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
Superku Offline
Senior Expert
Superku  Offline
Senior Expert

Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
The include file "level.c" (see manual) contains a function called
level_loadsplash (STRING* filename,STRING* bmapname,var mode) .


"Falls das Resultat nicht einfach nur dermassen gut aussieht, sollten Sie nochmal von vorn anfangen..." - Manual

Check out my new game: Pogostuck: Rage With Your Friends
Re: SplashScreens [Re: Yashas] #387275
11/16/11 13:38
11/16/11 13:38
Joined: Nov 2011
Posts: 21
MO:US and sometimes Ambato Ecu...
L
LewyT Offline
Newbie
LewyT  Offline
Newbie
L

Joined: Nov 2011
Posts: 21
MO:US and sometimes Ambato Ecu...
I think you are looking for the panel.alpha value
here is from the help file about it.
Example:
Code:
my_panel.transparent = ON;
my_panel.alpha = 0; // Panel 100% transparent
while (my_panel.alpha < 100)
{
  my_panel.alpha += 20*time_step; 
  wait(1);
}
my_panel.transparent = OFF;


It looks like it is doing something similar to what you are wanting.


Moderated by  George 

Gamestudio download | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1