「Dev:2.4/Source/Extensions/BLU/Documentation/Camera」の版間の差分

提供: wiki
< Dev:2.4‎ | Source‎ | Extensions‎ | BLU‎ | Documentation
移動先: 案内検索
(Bot: Fixing redirects)
 
(1版 をインポートしました)
 
(相違点なし)

2018年6月29日 (金) 02:45時点における最新版

Module

Camera gives the scripter access to Blender camera data. The Camera module itself has only two methods new() and get(). Both return a camera which can be further manipulated by either using methods of the camera or by directly using member variables.

-- Create a new camera datum of type Persp
camdat = Camera.new(Camera.Persp)
-- Create a new camera datum of type Ortho with name LuaCamDat
camdat2 = Camera.new(Camera.Ortho, "LuaCamDat")
-- Get an existing Blender camera datum with name "LuaCamDat"
camdat3 = Camera.get("LuaCamDat")

Back