/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/attributes/ |
ColorAttribute.java | 35 public static final long AmbientLight = register(AmbientLightAlias);
39 protected static long Mask = Ambient | Diffuse | Specular | Emissive | Reflection | AmbientLight | Fog;
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
ViewportTest3.java | 61 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.3f, 0.3f, 0.3f, 1.f));
|
KTXTest.java | 102 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.1f, 0.1f, 0.1f, 1.f));
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/ |
Basic3DSceneTest.java | 53 lights.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f));
|
Basic3DTest.java | 50 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, .4f, .4f, .4f, 1f));
|
FogTest.java | 49 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f));
|
HeightMapTest.java | 36 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f));
|
LightsTest.java | 46 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.2f, 0.2f, 0.2f, 1.0f));
|
ShadowMappingTest.java | 53 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, .4f, .4f, .4f, 1f));
|
ModelTest.java | 45 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f));
|
TextureRegion3DTest.java | 52 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, .4f, .4f, .4f, 1f));
|
MeshBuilderTest.java | 47 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f));
|
Animation3DTest.java | 63 lights.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f));
|
Benchmark3DTest.java | 147 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f));
|
ParticleControllerTest.java | 94 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0f, 0f, 0.1f, 1f));
|
ShaderCollectionTest.java | 134 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.1f, 0.1f, 0.1f, 1.f));
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/voxel/ |
VoxelTest.java | 57 lights.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.4f, 0.4f, 0.4f, 1.f));
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/ |
BaseBulletTest.java | 87 environment.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.3f, 0.3f, 0.3f, 1.f));
|
BasicBulletTest.java | 79 lights.set(new ColorAttribute(ColorAttribute.AmbientLight, 0.2f, 0.2f, 0.2f, 1.f));
|
OcclusionCullingTest.java | 205 frustumModel.materials.first().set(new ColorAttribute(ColorAttribute.AmbientLight, Color.WHITE));
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/shaders/ |
DefaultShader.java | 356 if (combinedAttributes.has(ColorAttribute.AmbientLight))
357 cacheAmbientCubemap.set(((ColorAttribute)combinedAttributes.get(ColorAttribute.AmbientLight)).color);
[all...] |