|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | 列挙型定数 | フィールド | メソッド | 詳細: 列挙型定数 | フィールド | メソッド |
java.lang.Objectjava.lang.Enum<RenderQueue.Bucket>
com.jme3.renderer.queue.RenderQueue.Bucket
public static enum RenderQueue.Bucket
The render queue Bucket
specifies the bucket
to which the spatial will be placed when rendered.
The behavior of the rendering will differ depending on which
bucket the spatial is placed. A spatial's queue bucket can be set
via Spatial.setQueueBucket(com.jme3.renderer.queue.RenderQueue.Bucket)
.
列挙型定数の概要 | |
---|---|
Gui
This is a special mode, for drawing 2D object without perspective (such as GUI or HUD parts). |
|
Inherit
A special mode, that will ensure that this spatial uses the same mode as the parent Node does. |
|
Opaque
The renderer will try to find the optimal order for rendering all objects using this mode. |
|
Sky
A special mode used for rendering really far away, flat objects - e.g. skies. |
|
Translucent
A special mode used for rendering transparent objects that should not be effected by SceneProcessor . |
|
Transparent
This is the mode you should use for object with transparency in them. |
メソッドの概要 | |
---|---|
static RenderQueue.Bucket |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。 |
static RenderQueue.Bucket[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。 |
クラス java.lang.Enum から継承されたメソッド |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
クラス java.lang.Object から継承されたメソッド |
---|
getClass, notify, notifyAll, wait, wait, wait |
列挙型定数の詳細 |
---|
public static final RenderQueue.Bucket Opaque
public static final RenderQueue.Bucket Transparent
public static final RenderQueue.Bucket Sky
public static final RenderQueue.Bucket Translucent
SceneProcessor
.
Generally this would contain translucent objects, and
also objects that do not write to the depth buffer such as
particle emitters.
public static final RenderQueue.Bucket Gui
public static final RenderQueue.Bucket Inherit
メソッドの詳細 |
---|
public static RenderQueue.Bucket[] values()
for (RenderQueue.Bucket c : RenderQueue.Bucket.values()) System.out.println(c);
public static RenderQueue.Bucket valueOf(java.lang.String name)
name
- 返される列挙型定数の名前
java.lang.IllegalArgumentException
- 指定された名前を持つ定数を
この列挙型が持っていない場合
java.lang.NullPointerException
- 引数が null の場合
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | 列挙型定数 | フィールド | メソッド | 詳細: 列挙型定数 | フィールド | メソッド |