当前位置: 首页>>代码示例>>Java>>正文


Java Material.remove方法代码示例

本文整理汇总了Java中com.badlogic.gdx.graphics.g3d.Material.remove方法的典型用法代码示例。如果您正苦于以下问题:Java Material.remove方法的具体用法?Java Material.remove怎么用?Java Material.remove使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.badlogic.gdx.graphics.g3d.Material的用法示例。


在下文中一共展示了Material.remove方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: turnOffLights

import com.badlogic.gdx.graphics.g3d.Material; //导入方法依赖的package包/类
public void turnOffLights() {
    for (Material mat : lightMaterials) {
        if (mat.has(ColorAttribute.Emissive)) {
            mat.remove(ColorAttribute.Emissive);
        }
    }
}
 
开发者ID:SiliconLabs,项目名称:thunderboard-android,代码行数:8,代码来源:DemoMotionGdxAdapter.java

示例2: applyToMaterial

import com.badlogic.gdx.graphics.g3d.Material; //导入方法依赖的package包/类
/**
 * Applies this material asset to the libGDX material.
 *
 * @param material
 * @return
 */
public Material applyToMaterial(Material material) {
    if (diffuseColor != null) {
        material.set(new ColorAttribute(ColorAttribute.Diffuse, diffuseColor));
    }
    if (diffuseTexture != null) {
        material.set(new TextureAttribute(TextureAttribute.Diffuse, diffuseTexture.getTexture()));
    } else {
        material.remove(TextureAttribute.Diffuse);
    }
    material.set(new FloatAttribute(FloatAttribute.Shininess, shininess));

    return material;
}
 
开发者ID:mbrlabs,项目名称:Mundus,代码行数:20,代码来源:MaterialAsset.java

示例3: addAttributeForm

import com.badlogic.gdx.graphics.g3d.Material; //导入方法依赖的package包/类
private void addAttributeForm(Attribute attribute, final Material material) {
	if (attribute instanceof ColorAttribute) {
		final ColorAttribute colorAttribute = (ColorAttribute) attribute;
		String type = ColorAttribute.getAttributeAlias(colorAttribute.type);


		ColorForm.ColorChangeListener colorChangeListener = new ColorForm.ColorChangeListener() {
			@Override
			public void onColorChange(float r, float g, float b) {
				//replace(material, colorAttribute, attribute);
				listener.onMaterialChange(material);
			}
		};

		final ColorForm colorAttributeForm = new ColorForm(
				getSkin(), "ColorAttribute " + type, colorAttribute.color, colorChangeListener, new RemoveTableListener() {
			@Override
			public void onRemove(Table table) {
				material.remove(colorAttribute.type);
				listener.onMaterialChange(material);
				removeActor(table);
				pack();
				listener.onMaterialChange(material);
			}
		});
		add(colorAttributeForm).colspan(2).left().fill();
		row();
	}
	pack();
}
 
开发者ID:aphex-,项目名称:Alien-Ark,代码行数:31,代码来源:MaterialForm.java

示例4: removeAtmosphericScattering

import com.badlogic.gdx.graphics.g3d.Material; //导入方法依赖的package包/类
public void removeAtmosphericScattering(Material mat) {
    mat.remove(AtmosphereAttribute.CameraHeight);
}
 
开发者ID:langurmonkey,项目名称:gaiasky,代码行数:4,代码来源:AtmosphereComponent.java


注:本文中的com.badlogic.gdx.graphics.g3d.Material.remove方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。