ejeinc / Meganekko

Gear VR Application Framework
http://www.meganekkovr.org/
Apache License 2.0
26 stars 10 forks source link

子として追加されたシーンオブジェクトに透明度とvisible設定が反映されない #7

Closed niusounds closed 8 years ago

niusounds commented 8 years ago
SceneObject parent;
SceneObject child;

...

parent.addChildObject(child);
parent.setOpacity(0.5f);
// parent and child are now opacity 0.5
SceneObject parent;
SceneObject child;

...

parent.setOpacity(0.5f);
parent.addChildObject(child);
// parent's opacity is 0.5 but child's opacity is not 0.5!
gvrfexp commented 8 years ago

I am interested in the issue. When you get a solution, would you please contribute to https://github.com/gvrfexp? Arigatou!

niusounds commented 8 years ago

Thank you for posting. I'm working on this issue.

niusounds commented 8 years ago

fixed by 948e4c28abda155d270d244a22a6e1941daf95e6