Created
October 13, 2014 11:26
-
-
Save wiking-at/82689e1d8ab4bac26603 to your computer and use it in GitHub Desktop.
custom loadingscreen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @file Version: 1.0 | |
// @file Name: loadingscreen.hpp | |
// @file Author: wiking.at | |
// www.armajunkies.de | |
// Definition of custom loadingscreen display. | |
titles[] = {"loadingscreen"}; | |
class loadingscreen { | |
idd = -1; | |
movingEnable = 0; | |
duration = 1e+011; | |
fadein = 0; | |
fadeout = 0; | |
name="loadingscreen"; | |
controls[]={"loadingPicture"}; | |
class loadingPicture { | |
x=safezonex; y=safezoney; w=safezonew; h=safezoneh; | |
style=48 + 0x800; | |
text="addons\loadingscreen\loading.jpg"; | |
sizeEx = -1; | |
type=0; | |
idc=-1; | |
colorBackground[]={0,0,0,0}; | |
colorText[]={1,1,1,1}; | |
font="TahomaB"; | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment