Top Page -> Archives -> 3DSMax: MaxScript -> MaxScript の制御文(if, while, for)

MaxScript の制御文(if, while, for)

Environment

Data: 2016 Sep, OS: Windows® 7 64bit, 3DSMax 2015

基本的な使い方

if (<条件式>) then (<処理>) else (<処理>)

			if (<条件式>) then (
				    <処理>
			) else (
				    <処理>
			)
			

while (<条件式>) do (<処理>)

			while (<条件式>) do
			(
				    <処理>
			)
			

for <変数名> = <初期値> to <終了値> do ( <処理> )

			for <変数名> = <初期値> to <終了値> do
			(
				    <処理>
			)