ilightprovider.as
来自「著名的flash 3d引擎 away 3d的源代码」· AS 代码 · 共 20 行
AS
20 行
package away3d.core.light{ /** * Interface for objects that provide lighting to the scene */ public interface ILightProvider { /** * Called from the <code>PrimitiveTraverser</code> when passing <code>LightPrimitive</code> objects to the light consumer object * * @param consumer The consumer instance. * * @see away3d.core.traverse.PrimitiveTraverser * @see away3d.core.light.LightPrimitive * @see away3d.core.light.ILightConsumer */ function light(consumer:ILightConsumer):void; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?