Torque3D Documentation / _generateds / VLightObject.cpp

VLightObject.cpp

Engine/source/Verve/Torque3D/VLightObject.cpp

More...

Detailed Description

 1
 2//-----------------------------------------------------------------------------
 3// Verve
 4// Copyright (C) 2014 - Violent Tulip
 5//
 6// Permission is hereby granted, free of charge, to any person obtaining a copy
 7// of this software and associated documentation files (the "Software"), to
 8// deal in the Software without restriction, including without limitation the
 9// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10// sell copies of the Software, and to permit persons to whom the Software is
11// furnished to do so, subject to the following conditions:
12//
13// The above copyright notice and this permission notice shall be included in
14// all copies or substantial portions of the Software.
15//
16// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22// IN THE SOFTWARE.
23//-----------------------------------------------------------------------------
24#include "Verve/Torque/TLightObject.h"
25
26//-----------------------------------------------------------------------------
27//
28// Light Object Methods.
29//
30//-----------------------------------------------------------------------------
31
32bool VTorque::isLightObjectEnabled( LightObjectType *pLightObject )
33{
34    if ( !pLightObject )
35    {
36        // Sanity!
37        return false;
38    }
39
40    // Get Enabled.
41    return pLightObject->getLightEnabled();
42}
43
44void VTorque::setLightObjectOn( LightObjectType *pLightObject, const bool &pStatus )
45{
46    if ( !pLightObject )
47    {
48        // Sanity!
49        return;
50    }
51
52    // Set Enabled.
53    pLightObject->setLightEnabled( pStatus );
54}
55
56void VTorque::playAnimation( LightObjectType *pLightObject, LightAnimationDataType *pLightAnimationData )
57{
58    if ( !pLightObject || !pLightAnimationData )
59    {
60        // Sanity!
61        return;
62    }
63
64    // Play Animation.
65    pLightObject->playAnimation( pLightAnimationData );
66}
67
68void VTorque::playAnimation( LightObjectType *pLightObject )
69{
70    if ( !pLightObject )
71    {
72        // Sanity!
73        return;
74    }
75
76    // Play Animation.
77    pLightObject->playAnimation();
78}
79
80void VTorque::pauseAnimation( LightObjectType *pLightObject )
81{
82    if ( !pLightObject )
83    {
84        // Sanity!
85        return;
86    }
87
88    // Play Animation.
89    pLightObject->pauseAnimation();
90}
91