Merge pull request #616 from Azaezel/SoundAssetImplements

Sound asset implements
This commit is contained in:
Brian Roberts 2021-10-13 13:11:57 -05:00 committed by GitHub
commit 15aed0efc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
126 changed files with 1313 additions and 1129 deletions

View file

@ -44,10 +44,10 @@ CubemapData::CubemapData()
for (U32 i = 0; i < 6; i++)
{
INIT_IMAGEASSET_ARRAY(CubeMapFace, i);
INIT_ASSET_ARRAY(CubeMapFace, i);
}
INIT_IMAGEASSET(CubeMap);
INIT_ASSET(CubeMap);
}
CubemapData::~CubemapData()

View file

@ -74,7 +74,7 @@ public:
protected:
DECLARE_IMAGEASSET(CubemapData, CubeMap, onCubemapChanged, GFXStaticTextureSRGBProfile);
DECLARE_IMAGEASSET_SETGET(CubemapData, CubeMap);
DECLARE_ASSET_SETGET(CubemapData, CubeMap);
DECLARE_IMAGEASSET_ARRAY(CubemapData, CubeMapFace, GFXStaticTextureSRGBProfile, 6);
DECLARE_IMAGEASSET_ARRAY_SETGET(CubemapData, CubeMapFace);