mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-26 15:49:30 +00:00
initial port of the new interpreter
This commit is contained in:
parent
5d2654b1ba
commit
35500a87c6
47 changed files with 3675 additions and 5839 deletions
|
|
@ -316,7 +316,7 @@ void SFXSource::initPersistFields()
|
|||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
bool SFXSource::processArguments( S32 argc, ConsoleValueRef *argv )
|
||||
bool SFXSource::processArguments( S32 argc, ConsoleValue *argv )
|
||||
{
|
||||
// Don't allow subclasses of this to be created via script. Force
|
||||
// usage of the SFXSystem functions.
|
||||
|
|
|
|||
|
|
@ -382,7 +382,7 @@ class SFXSource : public SimGroup
|
|||
|
||||
/// We overload this to disable creation of
|
||||
/// a source via script 'new'.
|
||||
virtual bool processArguments( S32 argc, ConsoleValueRef *argv );
|
||||
virtual bool processArguments( S32 argc, ConsoleValue *argv );
|
||||
|
||||
// Console getters/setters.
|
||||
static bool _setDescription( void *obj, const char *index, const char *data );
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ void SFXTrack::initPersistFields()
|
|||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
bool SFXTrack::processArguments( S32 argc, ConsoleValueRef *argv )
|
||||
bool SFXTrack::processArguments( S32 argc, ConsoleValue *argv )
|
||||
{
|
||||
if( typeid( *this ) == typeid( SFXTrack ) )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class SFXTrack : public SimDataBlock
|
|||
StringTableEntry mParameters[ MaxNumParameters ];
|
||||
|
||||
/// Overload this to disable direct instantiation of this class via script 'new'.
|
||||
virtual bool processArguments( S32 argc, ConsoleValueRef *argv );
|
||||
virtual bool processArguments( S32 argc, ConsoleValue *argv );
|
||||
|
||||
public:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue