관리자메뉴 관리자 글쓰기
Polygon으로 만들어진 세상

category

전체 (197)
Gossip (156)
Portfolio (2)
Tip and Tech (25)
3D studio Max Scripts (12)
Photoshop scripts (2)

calendar

«   2009/01   »
        1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31

tags

counter

  • 74/41/408136
툴바 보기/감추기
Tip and Tech/Max script 2008/12/23 16:05

global test_floater

rollout test_roll_1 "test rollout 1" (
label lbl_test "test rollout 1"
)
rollout test_roll_2 "test rollout 2" (
label lbl_test "test rollout 2"
)
rollout test_subroll_1 "test subrollout 1" (
label lbl_test "test subrollout 1"
)
rollout test_subroll_2 "test subrollout 2" (
label lbl_test "test subrollout 2"
)

rollout test_control "test control" (
checkbutton ckb_roll_1 "rollout 1"
checkbutton ckb_roll_2 "rollout 2"
checkbutton ckb_subroll_1 "subrollout 1"
checkbutton ckb_subroll_2 "subrollout 2"
subrollout sub_roll "subrollout here" width:256 height:64 align:#center

on ckb_roll_1 changed state do (
if (state) then ( addrollout test_roll_1 test_floater )
else ( removerollout test_roll_1 test_floater )
)
on ckb_roll_2 changed state do (
if (state) then ( addrollout test_roll_2 test_floater )
else ( removerollout test_roll_2 test_floater )
)
on ckb_subroll_1 changed state do (
if (state) then ( addsubrollout sub_roll test_subroll_1 )
else (removesubrollout sub_roll test_subroll_1 )
)
on ckb_subroll_2 changed state do (
if (state) then ( addsubrollout sub_roll test_subroll_2 )
else ( removesubrollout sub_roll test_subroll_2 )
)
)

test_floater = newRolloutFloater "Hello" 512 512
addrollout test_control test_floater


출처:http://forums.cgsociety.org/showthread.php?t=699242

Creative Commons License
Creative Commons License
2008/12/23 16:05 2008/12/23 16:05

댓글

  1. productionkim
    2009/01/04 00:59
    댓글수정, 삭제  댓글달기

    아놔 테터툴즈 스킨들 너무 안이쁘다....미치겠다. 아 맘에 드는게 없노!!! 그래도 윤호야 새해복 많이 받어 !!!

[로그인][오픈아이디란?]


사용자 삽입 이미지

마이너 업데이트 격...
3D 프리뷰 부분을 삭제했습니다..
shadermap 제작사에서 삭제했더군요...;;

개인적으로 사용할려고 만들은건데...생각보다 요청이 많아서...그냥 공개 합니다..

설치법 : 공지사항을 참고 하세요.
사용법 : ShaderMap Preview 참고 하시면 됩니다.. 1.1.1 버전인가에 AO Map 이 추가된 부분도 추가 했습니다.


Creative Commons License
Creative Commons License

"3D studio Max Scripts / Shdermap GUI" 분류의 다른 글

shadermap 1.0.6 대응 MXS GUI (5)2008/09/01
ShaderMap Preview (12)2008/07/21
ShaderMap Preview (12)1970/01/01
2008/12/22 17:15 2008/12/22 17:15

댓글

  1. 비밀방문자
    2009/01/05 22:24
    댓글수정, 삭제  댓글달기

    관리자만 볼 수 있는 댓글입니다.

    • studio2k
      2009/01/06 14:31
      댓글수정, 삭제

      에고 죄송합니다..화일하나가 누락되어있었네요...
      다시 업로드 했습니다.

  2. 비밀방문자
    2009/01/06 18:05
    댓글수정, 삭제  댓글달기

    관리자만 볼 수 있는 댓글입니다.

    • studio2k
      2009/01/06 18:46
      댓글수정, 삭제

      쿨럭..화일만 올리고 다운로드 받을수 없게 해놨었네요;;
      에고 죄송해요..

  3. 비밀방문자
    2009/01/07 12:59
    댓글수정, 삭제  댓글달기

    관리자만 볼 수 있는 댓글입니다.

[로그인][오픈아이디란?]

Tip and Tech/Max script 2008/12/12 11:32


(
--dotnet.loadassembly "System.Data"
rollout ro_test "test"
(
dotnetcontrol dg "System.Windows.Forms.DataGridView"

on ro_test open do
(
local colWidth = 160
local fromCol = dotNetObject "System.Windows.Forms.DataGridViewTextBoxColumn"
fromCol.headerText = "Original Textures"
fromCol.readOnly = true
fromCol.frozen = true
fromCol.width = colWidth

local toCol = dotNetObject "System.Windows.Forms.DataGridViewTextBoxColumn"
toCol.headerText = "New Textures"
toCol.width = colWidth

dg.columns.add fromCol
dg.columns.add toCol

dg.Location = dotNetObject "System.Drawing.Point" 10 10
dg.Width = 400
dg.Height = 400
dg.Visible = true

for i = 1 to 5 do
(
local row = #(dotNetObject "System.String" ("row str"))
dg.rows.add row
)
)
)

createdialog ro_test 500 500
)

                          -출처 Cgtalk.com
Creative Commons License
Creative Commons License
2008/12/12 11:32 2008/12/12 11:32

댓글

[로그인][오픈아이디란?]