mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 07:34:45 +00:00
Merge pull request #1208 from jamesu/datachunker_refactor
Datachunker & FrameAllocator refactor
This commit is contained in:
commit
25a3c3325f
16 changed files with 1222 additions and 682 deletions
|
|
@ -39,6 +39,13 @@
|
|||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
SFXSoundscape::SFXSoundscape()
|
||||
: mAmbience( NULL )
|
||||
{
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
SFXSoundscape::SFXSoundscape( SFXAmbience* ambience )
|
||||
: mAmbience( ambience )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -106,6 +106,9 @@ class SFXSoundscape
|
|||
bool _isUnique() const { return mFlags.test( FlagUnique ); }
|
||||
|
||||
public:
|
||||
|
||||
/// Defaault constructor for allocator
|
||||
SFXSoundscape();
|
||||
|
||||
/// Create a soundscape associated with the given ambient space.
|
||||
SFXSoundscape( SFXAmbience* ambience );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue