mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-25 07:09:27 +00:00
Parametrize script extension, default to 'tscript'
This commit is contained in:
parent
b8b62292bd
commit
099dd4f1f3
542 changed files with 774 additions and 783 deletions
|
|
@ -6,8 +6,8 @@
|
|||
function VerveEditor::InitControllerScripts()
|
||||
{
|
||||
// Core.
|
||||
exec( "./VController.cs" );
|
||||
exec( "./VControllerProperties.cs" );
|
||||
exec( "./VController.tscript" );
|
||||
exec( "./VControllerProperties.tscript" );
|
||||
|
||||
// Custom.
|
||||
// Exec Custom Controller Scripts.
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Verve
|
||||
// Copyright (C) - Violent Tulip
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function VerveEditor::InitEventScripts()
|
||||
{
|
||||
// Core.
|
||||
exec( "./VEvent.cs" );
|
||||
|
||||
// Built-In.
|
||||
exec( "./VCameraShakeEvent.cs" );
|
||||
exec( "./VDirectorEvent.cs" );
|
||||
exec( "./VFadeEvent.cs" );
|
||||
exec( "./VLightObjectAnimationEvent.cs" );
|
||||
exec( "./VLightObjectToggleEvent.cs" );
|
||||
exec( "./VMotionEvent.cs" );
|
||||
exec( "./VParticleEffectToggleEvent.cs" );
|
||||
exec( "./VPostEffectToggleEvent.cs" );
|
||||
exec( "./VSceneJumpEvent.cs" );
|
||||
exec( "./VScriptEvent.cs" );
|
||||
exec( "./VShapeAnimationEvent.cs" );
|
||||
exec( "./VSlowMoEvent.cs" );
|
||||
exec( "./VSoundEffectEvent.cs" );
|
||||
exec( "./VSpawnSphereSpawnTargetEvent.cs" );
|
||||
|
||||
// Custom.
|
||||
// Exec Custom Event Scripts.
|
||||
}
|
||||
VerveEditor::InitEventScripts();
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Verve
|
||||
// Copyright (C) - Violent Tulip
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function VerveEditor::InitEventScripts()
|
||||
{
|
||||
// Core.
|
||||
exec( "./VEvent.tscript" );
|
||||
|
||||
// Built-In.
|
||||
exec( "./VCameraShakeEvent.tscript" );
|
||||
exec( "./VDirectorEvent.tscript" );
|
||||
exec( "./VFadeEvent.tscript" );
|
||||
exec( "./VLightObjectAnimationEvent.tscript" );
|
||||
exec( "./VLightObjectToggleEvent.tscript" );
|
||||
exec( "./VMotionEvent.tscript" );
|
||||
exec( "./VParticleEffectToggleEvent.tscript" );
|
||||
exec( "./VPostEffectToggleEvent.tscript" );
|
||||
exec( "./VSceneJumpEvent.tscript" );
|
||||
exec( "./VScriptEvent.tscript" );
|
||||
exec( "./VShapeAnimationEvent.tscript" );
|
||||
exec( "./VSlowMoEvent.tscript" );
|
||||
exec( "./VSoundEffectEvent.tscript" );
|
||||
exec( "./VSpawnSphereSpawnTargetEvent.tscript" );
|
||||
|
||||
// Custom.
|
||||
// Exec Custom Event Scripts.
|
||||
}
|
||||
VerveEditor::InitEventScripts();
|
||||
|
|
@ -6,15 +6,15 @@
|
|||
function VerveEditor::InitGroupScripts()
|
||||
{
|
||||
// Core.
|
||||
exec( "./VGroup.cs" );
|
||||
exec( "./VGroup.tscript" );
|
||||
|
||||
// Built In.
|
||||
exec( "./VCameraGroup.cs" );
|
||||
exec( "./VDirectorGroup.cs" );
|
||||
exec( "./VLightObjectGroup.cs" );
|
||||
exec( "./VParticleEffectGroup.cs" );
|
||||
exec( "./VSceneObjectGroup.cs" );
|
||||
exec( "./VSpawnSphereGroup.cs" );
|
||||
exec( "./VCameraGroup.tscript" );
|
||||
exec( "./VDirectorGroup.tscript" );
|
||||
exec( "./VLightObjectGroup.tscript" );
|
||||
exec( "./VParticleEffectGroup.tscript" );
|
||||
exec( "./VSceneObjectGroup.tscript" );
|
||||
exec( "./VSpawnSphereGroup.tscript" );
|
||||
|
||||
// Custom.
|
||||
// Exec Custom Group Scripts.
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Verve
|
||||
// Copyright (C) - Violent Tulip
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function VerveEditor::InitInspectorFieldScripts()
|
||||
{
|
||||
exec( "./TypeBool.cs" );
|
||||
exec( "./TypeData.cs" );
|
||||
exec( "./TypeEnum.cs" );
|
||||
exec( "./TypeString.cs" );
|
||||
|
||||
exec( "./TypeVCameraGroupEnum.cs" );
|
||||
exec( "./TypeVCommandEnum.cs" );
|
||||
exec( "./TypeVControllerDataEnum.cs" );
|
||||
exec( "./TypeVGroupEnum.cs" );
|
||||
exec( "./TypeVLightAnimationDataEnum.cs" );
|
||||
exec( "./TypeVPathOrientationModeEnum.cs" );
|
||||
exec( "./TypeVPostEffectEnum.cs" );
|
||||
exec( "./TypeVSceneEnum.cs" );
|
||||
exec( "./TypeVSFXProfileEnum.cs" );
|
||||
exec( "./TypeVShapeAnimationEnum.cs" );
|
||||
exec( "./TypeToggleEnum.cs" );
|
||||
}
|
||||
VerveEditor::InitInspectorFieldScripts();
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Verve
|
||||
// Copyright (C) - Violent Tulip
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function VerveEditor::InitInspectorFieldScripts()
|
||||
{
|
||||
exec( "./TypeBool.tscript" );
|
||||
exec( "./TypeData.tscript" );
|
||||
exec( "./TypeEnum.tscript" );
|
||||
exec( "./TypeString.tscript" );
|
||||
|
||||
exec( "./TypeVCameraGroupEnum.tscript" );
|
||||
exec( "./TypeVCommandEnum.tscript" );
|
||||
exec( "./TypeVControllerDataEnum.tscript" );
|
||||
exec( "./TypeVGroupEnum.tscript" );
|
||||
exec( "./TypeVLightAnimationDataEnum.tscript" );
|
||||
exec( "./TypeVPathOrientationModeEnum.tscript" );
|
||||
exec( "./TypeVPostEffectEnum.tscript" );
|
||||
exec( "./TypeVSceneEnum.tscript" );
|
||||
exec( "./TypeVSFXProfileEnum.tscript" );
|
||||
exec( "./TypeVShapeAnimationEnum.tscript" );
|
||||
exec( "./TypeToggleEnum.tscript" );
|
||||
}
|
||||
VerveEditor::InitInspectorFieldScripts();
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Verve
|
||||
// Copyright (C) - Violent Tulip
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function VerveEditor::InitInspectorScripts()
|
||||
{
|
||||
exec( "./Controls.cs" );
|
||||
exec( "./CutCopyPaste.cs" );
|
||||
exec( "./EventNotify.cs" );
|
||||
exec( "./Factory.cs" );
|
||||
exec( "./FactoryControls.cs" );
|
||||
exec( "./FieldNotify.cs" );
|
||||
exec( "./Lists.cs" );
|
||||
exec( "./Properties.cs" );
|
||||
exec( "./Selection.cs" );
|
||||
|
||||
exec( "./Fields/main.cs" );
|
||||
}
|
||||
VerveEditor::InitInspectorScripts();
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Verve
|
||||
// Copyright (C) - Violent Tulip
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function VerveEditor::InitInspectorScripts()
|
||||
{
|
||||
exec( "./Controls.tscript" );
|
||||
exec( "./CutCopyPaste.tscript" );
|
||||
exec( "./EventNotify.tscript" );
|
||||
exec( "./Factory.tscript" );
|
||||
exec( "./FactoryControls.tscript" );
|
||||
exec( "./FieldNotify.tscript" );
|
||||
exec( "./Lists.tscript" );
|
||||
exec( "./Properties.tscript" );
|
||||
exec( "./Selection.tscript" );
|
||||
|
||||
exec( "./Fields/main.tscript" );
|
||||
}
|
||||
VerveEditor::InitInspectorScripts();
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Verve
|
||||
// Copyright (C) - Violent Tulip
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function VerveEditor::InitTrackScripts()
|
||||
{
|
||||
// Core.
|
||||
exec( "./VTrack.cs" );
|
||||
|
||||
// Built-In.
|
||||
exec( "./VCameraShakeTrack.cs" );
|
||||
exec( "./VDirectorTrack.cs" );
|
||||
exec( "./VFadeTrack.cs" );
|
||||
exec( "./VLightObjectAnimationTrack.cs" );
|
||||
exec( "./VLightObjectToggleTrack.cs" );
|
||||
exec( "./VMotionTrack.cs" );
|
||||
exec( "./VParticleEffectToggleTrack.cs" );
|
||||
exec( "./VPostEffectToggleTrack.cs" );
|
||||
exec( "./VSceneJumpTrack.cs" );
|
||||
exec( "./VScriptEventTrack.cs" );
|
||||
exec( "./VShapeAnimationTrack.cs" );
|
||||
exec( "./VSlowMoTrack.cs" );
|
||||
exec( "./VSoundEffectTrack.cs" );
|
||||
exec( "./VSpawnSphereSpawnTargetTrack.cs" );
|
||||
|
||||
// Custom.
|
||||
// Exec Custom Track Scripts.
|
||||
|
||||
// Non-Unique Group List.
|
||||
$VerveEditor::NonUniqueTrackList = "VTrack VPostEffectToggleTrack VSoundEffectTrack";
|
||||
}
|
||||
VerveEditor::InitTrackScripts();
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Verve
|
||||
// Copyright (C) - Violent Tulip
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function VerveEditor::InitTrackScripts()
|
||||
{
|
||||
// Core.
|
||||
exec( "./VTrack.tscript" );
|
||||
|
||||
// Built-In.
|
||||
exec( "./VCameraShakeTrack.tscript" );
|
||||
exec( "./VDirectorTrack.tscript" );
|
||||
exec( "./VFadeTrack.tscript" );
|
||||
exec( "./VLightObjectAnimationTrack.tscript" );
|
||||
exec( "./VLightObjectToggleTrack.tscript" );
|
||||
exec( "./VMotionTrack.tscript" );
|
||||
exec( "./VParticleEffectToggleTrack.tscript" );
|
||||
exec( "./VPostEffectToggleTrack.tscript" );
|
||||
exec( "./VSceneJumpTrack.tscript" );
|
||||
exec( "./VScriptEventTrack.tscript" );
|
||||
exec( "./VShapeAnimationTrack.tscript" );
|
||||
exec( "./VSlowMoTrack.tscript" );
|
||||
exec( "./VSoundEffectTrack.tscript" );
|
||||
exec( "./VSpawnSphereSpawnTargetTrack.tscript" );
|
||||
|
||||
// Custom.
|
||||
// Exec Custom Track Scripts.
|
||||
|
||||
// Non-Unique Group List.
|
||||
$VerveEditor::NonUniqueTrackList = "VTrack VPostEffectToggleTrack VSoundEffectTrack";
|
||||
}
|
||||
VerveEditor::InitTrackScripts();
|
||||
Loading…
Add table
Add a link
Reference in a new issue