7#ifndef DCPP_I_VOLUME_LIGHT_SCENE_NODE_HPP_INCLUDED
8#define DCPP_I_VOLUME_LIGHT_SCENE_NODE_HPP_INCLUDED
10#include <duckcpp/core/engine/ISceneNode.hpp>
27 :
ISceneNode(parent, mgr, id, position, rotation, scale) {};
3d vector template class with lots of operators and methods.
Definition vector3d.hpp:32
The Scene Manager manages scene nodes, mesh resources, cameras and all the other stuff.
Definition ISceneManager.hpp:160
Scene node interface.
Definition ISceneNode.hpp:43
Definition IVolumeLightSceneNode.hpp:19
virtual void setSubDivideU(const dcpp::uint32_kt inU)=0
Sets the number of segments across the U axis.
virtual void setTailColor(const dcpp::video::SColor inColor)=0
Sets the color of the tip of the light.
IVolumeLightSceneNode(ISceneNode *parent, ISceneManager *mgr, dcpp::int32_kt id, const dcpp::nub::vector3df &position, const dcpp::nub::vector3df &rotation, const dcpp::nub::vector3df &scale)
constructor
Definition IVolumeLightSceneNode.hpp:23
virtual dcpp::video::SColor getTailColor() const =0
Returns the color of the tip of the light.
virtual void setFootColor(const dcpp::video::SColor inColor)=0
Sets the color of the base of the light.
virtual dcpp::uint32_kt getSubDivideV() const =0
Returns the number of segments across the V axis.
virtual void setSubDivideV(const dcpp::uint32_kt inV)=0
Sets the number of segments across the V axis.
virtual ESCENE_NODE_TYPE getType() const override
Returns type of the scene node.
Definition IVolumeLightSceneNode.hpp:30
virtual dcpp::uint32_kt getSubDivideU() const =0
Returns the number of segments across the U axis.
virtual dcpp::video::SColor getFootColor() const =0
Returns the color of the base of the light.
Class representing a 32 bit ARGB color.
Definition SColor.hpp:317
ESCENE_NODE_TYPE
An enumeration for all types of built-in scene nodes.
Definition ESceneNodeTypes.hpp:20
@ ESNT_VOLUME_LIGHT
Volume Light Scene Node.
Definition ESceneNodeTypes.hpp:85
As of Duckcpp 1.6, position2d is a synonym for vector2d.
Definition shared_device.hpp:34
unsigned int uint32_kt
32 bit unsigned variable.
Definition irrTypes.hpp:64
signed int int32_kt
32 bit signed variable.
Definition irrTypes.hpp:72