Add Chromium-only Blender WebEngine parity work
This commit is contained in:
27
blender-5.2.0/intern/itasc/WorldObject.cpp
Normal file
27
blender-5.2.0/intern/itasc/WorldObject.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/* SPDX-FileCopyrightText: 2009 Benoit Bolsee
|
||||
*
|
||||
* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||||
|
||||
/** \file
|
||||
* \ingroup intern_itasc
|
||||
*/
|
||||
|
||||
#include "WorldObject.hpp"
|
||||
|
||||
namespace iTaSC{
|
||||
|
||||
/* special singleton to be used as base for uncontrolled object */
|
||||
WorldObject Object::world;
|
||||
|
||||
WorldObject::WorldObject():UncontrolledObject()
|
||||
{
|
||||
initialize(0,1);
|
||||
m_internalPose = Frame::Identity();
|
||||
}
|
||||
|
||||
WorldObject::~WorldObject()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user