39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
|
//-----------------------------------------------------------------------------
|
||
|
// Torque Game Engine
|
||
|
//
|
||
|
// Copyright (c) 2001 GarageGames.Com
|
||
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
function LoadingGui::onAdd(%this)
|
||
|
{
|
||
|
%this.qLineCount = 0;
|
||
|
}
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
function LoadingGui::onWake(%this)
|
||
|
{
|
||
|
// Play sound...
|
||
|
CloseMessagePopup();
|
||
|
}
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
function LoadingGui::onSleep(%this)
|
||
|
{
|
||
|
// Clear the load info:
|
||
|
if ( %this.qLineCount !$= "" )
|
||
|
{
|
||
|
for ( %line = 0; %line < %this.qLineCount; %line++ )
|
||
|
%this.qLine[%line] = "";
|
||
|
}
|
||
|
%this.qLineCount = 0;
|
||
|
|
||
|
LOAD_MapName.setText( "" );
|
||
|
//LOAD_MapDescription.setText( "" );
|
||
|
LoadingProgress.setValue( 0 );
|
||
|
LoadingProgressTxt.setValue( "WAITING FOR SERVER" );
|
||
|
|
||
|
// Stop sound...
|
||
|
}
|