⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scenelayer.java

📁 Java mulitplayer strategy game. Adaptation of KDE Galaxy Conquest. (rules are changed - but still th
💻 JAVA
字号:
/*
 * Created at 2005-11-10
 */
package net.sf.jawp.j3d;

import javax.media.j3d.BranchGroup;

/**
 * General interface for 3D scene layers. Every layer has branch group attached
 * to. All visible 3D nodes should be connected to this branch group.
 * 
 * @author Maciej Malecki
 * @param <RENDERABLE>
 */
public interface SceneLayer<RENDERABLE>
{

	/**
	 * Returns a branch group used by this layer.
	 * 
	 * @return
	 */
	BranchGroup getSceneObjects();

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -