Examples of Skysphere


Examples of org.terasology.rendering.world.Skysphere

*/
public class SceneProperties implements PropertyProvider {
    @Override
    public List<Property<?>> getProperties() {
        List<Property<?>> result = Lists.newArrayList();
        Skysphere skysphere = CoreRegistry.get(WorldRenderer.class).getSkysphere();
        if (skysphere != null) {
            result.addAll(new ReflectionProvider(skysphere).getProperties());
        }
        DefaultRenderingProcess postRenderer = DefaultRenderingProcess.getInstance();
        if (postRenderer != null) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.