ジャンプ先: 概要. 戻り値. 関連. フラグ. Python 例.

概要

pointLight([decayRate=int], [discRadius=linear], [exclusive=boolean], [intensity=float], [name=string], [position=[linear, linear, linear]], [rgb=[float, float, float]], [rotation=[angle, angle, angle]], [shadowColor=[float, float, float]], [shadowDither=float], [shadowSamples=int], [softShadow=boolean], [useRayTraceShadows=boolean])

注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。

pointLight は、取り消し可能、照会可能、および 編集可能 です。

既存ポイントライトのパラメータの編集、または新しいポイントライトの作成に使用します。既定では、新しいポイントライトが作成されます。

戻り値

stringライト シェイプの名前

照会モードでは、戻り値のタイプは照会されたフラグに基づきます。

関連

ambientLight, directionalLight, exclusiveLightCheckBox, lightList, lightlink, spotLight, spotLightPreviewPort

フラグ

decayRate, discRadius, exclusive, intensity, name, position, rgb, rotation, shadowColor, shadowDither, shadowSamples, softShadow, useRayTraceShadows
ロング ネーム(ショート ネーム) 引数タイプ プロパティ
decayRate(d) int createqueryedit
ライトの減衰度です(0- 減衰なし、1- ゆっくり減衰、2- 普通の減衰、3- 速い減衰)。
discRadius(drs) linear createqueryedit
ライトの周りの円形の半径です。
exclusive(exc) boolean createqueryedit
このフラグは現在サポートしていません。
intensity(i) float createqueryedit
ライトの輝度です(パーセンテージ表示)。
name(n) string createqueryedit
ライトの名前を指定します。
position(pos) [linear, linear, linear] createqueryedit
このフラグは現在サポートしていません。
shadowColor(sc) [float, float, float] createqueryedit
シャドウ カラーです。
shadowDither(sd) float createqueryedit
シャドウをディザリングします。
shadowSamples(sh) int createqueryedit
シャドウ サンプルの数です。
softShadow(ss) boolean createqueryedit
ソフト シャドウです。
rgb(rgb) [float, float, float] createqueryedit
ライトのカラーです(0-1)。
rotation(rot) [angle, angle, angle] createqueryedit
このフラグは現在サポートしていません。
useRayTraceShadows(rs) boolean createqueryedit
レイ トレース シャドウです。

フラグはコマンドの作成モードで表示できます フラグはコマンドの編集モードで表示できます
フラグはコマンドの照会モードで表示できます フラグに複数の引数を指定し、タプルまたはリストとして渡すことができます。

Python 例

import maya.cmds as cmds

cmds.pointLight()