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

📄 renderobject.java

📁 Sunflow是一个照片级的渲染系统
💻 JAVA
字号:
package org.sunflow.core;

import org.sunflow.SunflowAPI;

/**
 * This is the base interface for all public rendering object interfaces. It
 * handles incremental updates via {@link ParameterList} objects.
 */
public interface RenderObject {
    /**
     * Update this object given a list of parameters. This method is guarenteed
     * to be called at least once on every object, but it should correctly
     * handle empty parameter lists. This means that the object should be in a
     * valid state from the time it is constructed. This method should also
     * return true or false depending on whether the update was succesfull or
     * not.
     * 
     * @param pl list of parameters to read from
     * @param api reference to the current scene
     * @return <code>true</code> if the update is succesfull,
     *         <code>false</code> otherwise
     */
    public boolean update(ParameterList pl, SunflowAPI api);
}

⌨️ 快捷键说明

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