a3js API Documentation - v1.3.1
    Preparing search index...

    Interface StandardLightsOptions

    StandardLightsのコンストラクタに指定してStandardLightsの設定を行うためのオプションの型です。

    interface StandardLightsOptions {
        colorAL: number;
        colorDL: number;
        direction: MutableVec3;
        intensityAL: number;
        intensityDL: number;
    }
    Index

    Properties

    colorAL: number

    AmbientLightの色です。デフォルトは0xffffffです。

    colorDL: number

    DirectionalLightの色です。デフォルトは0xffffffです。

    direction: MutableVec3

    DirectionalLightの光の方向を表すベクトルです。デフォルトは{x:-1,y:-1,z:-1}です。

    intensityAL: number

    AmbientLightの光の強さです。デフォルトは0.4です。

    intensityDL: number

    DirectionalLightの光の強さです。デフォルトは1.0です。