修改底层渲染为OpenGL

This commit is contained in:
2025-10-23 15:21:12 +08:00
parent 1fe898e09c
commit f9a2300b5a
37 changed files with 2782 additions and 3761 deletions

View File

@@ -288,6 +288,11 @@ void BaseNode::SetAlpha(float alpha)
this->Alpha = alpha;
}
BaseNode *BaseNode::GetParent()
{
return this->m_Parent;
}
float BaseNode::GetAlpha()
{
return this->Alpha;

View File

@@ -132,4 +132,7 @@ public:
virtual void SetAlpha(float alpha);
// 获取透明度
float GetAlpha();
//获取父对象
BaseNode *GetParent();
};