com.ardor3d.scenegraph.Node.markDirty()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(287)

本文整理了Java中com.ardor3d.scenegraph.Node.markDirty()方法的一些代码示例,展示了Node.markDirty()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.markDirty()方法的具体详情如下:
包路径:com.ardor3d.scenegraph.Node
类名称:Node
方法名:markDirty

Node.markDirty介绍

暂无

代码示例

代码示例来源:origin: com.ardor3d/ardor3d-core

  1. /**
  2. *
  3. * <code>detachChildAt</code> removes a child at a given index. That child is returned for saving purposes.
  4. *
  5. * @param index
  6. * the index of the child to be removed.
  7. * @return the child at the supplied index.
  8. */
  9. public Spatial detachChildAt(final int index) {
  10. final Spatial child = _children.remove(index);
  11. if (child != null) {
  12. child.setParent(null);
  13. markDirty(child, DirtyType.Detached);
  14. if (child.getListener() != null) {
  15. child.setListener(null);
  16. }
  17. if (logger.isLoggable(Level.INFO)) {
  18. logger.fine("Child removed.");
  19. }
  20. }
  21. return child;
  22. }

代码示例来源:origin: Renanse/Ardor3D

  1. /**
  2. *
  3. * <code>detachChildAt</code> removes a child at a given index. That child is returned for saving purposes.
  4. *
  5. * @param index
  6. * the index of the child to be removed.
  7. * @return the child at the supplied index.
  8. */
  9. public Spatial detachChildAt(final int index) {
  10. final Spatial child = _children.remove(index);
  11. if (child != null) {
  12. child.setParent(null);
  13. markDirty(child, DirtyType.Detached);
  14. if (child.getListener() != null) {
  15. child.setListener(null);
  16. }
  17. if (logger.isLoggable(Level.INFO)) {
  18. logger.fine("Child removed.");
  19. }
  20. }
  21. return child;
  22. }

相关文章