2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 10:37:41 -04:00

MaxPlasmaMtls mostly compiles. Weird issue with plDynamicEncLayer[BitmapPB].cpp is stumping me.

This commit is contained in:
2011-04-15 18:32:20 -04:00
parent 205105ef23
commit a6939bb14f
20 changed files with 97 additions and 78 deletions

View File

@ -2041,7 +2041,7 @@ plLayerInterface* IProcessLayerAnimation(plPassMtlBase* mtl, plLayerTex* layTex,
TSTR animName = TSTR(name) + TSTR("_anim_") + TSTR(mtl->GetGlobalVarName());
hsgResMgr::ResMgr()->NewKey(animName, SDLLayer, node->GetLocation());
SDLLayer->SetVarName(mtl->GetGlobalVarName());
SDLLayer->SetVarName((char*)mtl->GetGlobalVarName());
SDLLayer->SetTransformCtl(xfmCtl);
SDLLayer->AttachViaNotify(layerIFace);
node->CheckSynchOptions(SDLLayer);
@ -2141,7 +2141,7 @@ plLayerInterface* IProcessAnimation(plPassMtlBase *mtl, plMaxNode *node, const c
TSTR animName = TSTR(name) + TSTR("_anim_") + TSTR(mtl->GetGlobalVarName());
hsgResMgr::ResMgr()->NewKey(animName, SDLLayer, node->GetLocation());
SDLLayer->SetVarName(mtl->GetGlobalVarName());
SDLLayer->SetVarName((char*)mtl->GetGlobalVarName());
node->CheckSynchOptions(SDLLayer);
if (colCtl)

View File

@ -59,6 +59,7 @@ class Animatable;
class Bitmap;
class plLocation;
class plLayerTex;
class plBitmapData;
class plCubicRenderTarget;