/***************************************************************************
sceneactuator.h - description
-------------------
begin : Wed Dec 20 2000
copyright : (C) 2000 by Jan Walter
email : jan@blender.nl
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef SCENEACTUATOR_H
#define SCENEACTUATOR_H
#include <actuator.h>
/**A SceneActuator is a special kind of a general actuator.
*@author Jan Walter
*/
class Actuator.html">SceneActuator : public Actuator {
public:
SceneActuator();
~SceneActuator();
/** Set flag to 1 to restart the scene. */
PyObject* setUseRestart(int flag);
/** Return whether the scene will be restarted. */
PyObject* getUseRestart();
/** Set the scene to switch to. */
PyObject* setScene(char* sceneName);
/** Return the scene to switch to. */
PyObject* getScene();
/** Set the camera to switch to. */
PyObject* setCamera(char* camera);
/** Return the camera to switch to. */
PyObject* getCamera();
};
#endif
Documentation generated by jan@nvidea on Thu Dec 21 14:04:43 CET 2000