Node : fixed setTransformRefresh to properly set the transform refresh to all the node's children.
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7171 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
c63c4a3e2b
commit
db8034d894
@ -101,7 +101,7 @@ public class Node extends Spatial implements Savable {
|
||||
super.setTransformRefresh();
|
||||
for (Spatial child : children){
|
||||
if ((child.refreshFlags & RF_TRANSFORM) != 0)
|
||||
return;
|
||||
continue;
|
||||
|
||||
child.setTransformRefresh();
|
||||
}
|
||||
@ -112,7 +112,7 @@ public class Node extends Spatial implements Savable {
|
||||
super.setLightListRefresh();
|
||||
for (Spatial child : children){
|
||||
if ((child.refreshFlags & RF_LIGHTLIST) != 0)
|
||||
return;
|
||||
continue;
|
||||
|
||||
child.setLightListRefresh();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user