회원 로그인
정보기억 정보기억에 체크할 경우 다음접속시 아이디와 패스워드를 입력하지 않으셔도 됩니다.
그러나, 개인PC가 아닐 경우 타인이 로그인할 수 있습니다.
PC를 여러사람이 사용하는 공공장소에서는 체크하지 마세요.
소셜네트워크 서비스를 통해서 로그인하시면 별도의 로그인 절차없이 회원서비스를 이용하실 수 있습니다.


최근 게시물

1.노션에서 작성 중

1.노션에서 작성 중

개편하기 전까지 노션에서 작성 중

2024.04.04//read more

2.ChatGPT

2.ChatGPT

OpenAI로 대규모 언어 모델대화형...

2023.03.16//read more

3.노코딩 게임 엔진 - 빌..

3.노코딩 게임 엔진 - 빌..

빌드 지원안드로이드iOS윈도우즈특이사...

2023.03.14//read more

4.(완료) 미접속 회원 정..

4.(완료) 미접속 회원 정..

[완료] 36명의 회원을 정리하였습니...

2023.02.16//read more

5.매뉴얼 플러스 - 전자제..



안정적인 DNS 서비스 DNSEver
DNS Powered by DNSEver.com


Maya Python API 2.0 : 나의 첫 플러그인 Hello World!

푸딩뱃살 | 2017.05.19 18:48 | 조회 4116
Maya Python API 2.0 : 나의 첫 플러그인 Hello World!

 Maya 2017 Update 3


 환경 변수 설정
사용자 변수 설정에 추가
변수명 MAYA_PLUG_IN_PATH
값 %USERPROFILE%\Documents\scripts




import sys
import maya.api.OpenMaya as om

"""
def maya_useNewAPI():
    pass
"""

# command
class PyHelloWorldCmd(om.MPxCommand):
    kPluginCmdName = "pyHelloWorld" #실행 명령어

    def __init__(self):
        om.MPxCommand.__init__(self)

    @staticmethod
    def cmdCreator():
        return PyHelloWorldCmd()

    def doIt(self, args):
        print "Hello World!"


# Initialize the plug-in
def initializePlugin(plugin):
    pluginFn = om.MFnPlugin(plugin)
    try:
        pluginFn.registerCommand(
            PyHelloWorldCmd.kPluginCmdName, PyHelloWorldCmd.cmdCreator
        )
    except:
        sys.stderr.write(
            "Failed to register command: %s\n" % PyHelloWorldCmd.kPluginCmdName
        )
        raise


# Uninitialize the plug-in
def uninitializePlugin(plugin):
    pluginFn = om.MFnPlugin(plugin)
    try:
        pluginFn.deregisterCommand(PyHelloWorldCmd.kPluginCmdName)
    except:
        sys.stderr.write(
            "Failed to unregister command: %s\n" % PyHelloWorldCmd.kPluginCmdName
        )
        raise

Script Editor에서 사용자\문서\Maya\버젼\plug-ins 폴더에 스크립트(myFirstPlugin.py) 저장
마야의 Windows>Settings/Preferences>Plug-in Manager에서 myFirstPlugin.py 확인 (로드는 하지 않는다.)

실행
import maya.cmds as cmds
cmds.loadPlugin("myFirstPlugin.py") #플러그인 로드
cmds.pyHelloWorld() #실행

출력
Hello World!

참고 도움말> https://goo.gl/04AIAY
35개(2/2페이지)
마야
번호 제목 글쓴이 조회 날짜
공지 마야 뷰포트 네비게이션 팁 푸딩뱃살 45224 2020.04.06 17:22
공지 Maya 버전 별 Python 버전 푸딩뱃살 65956 2014.01.08 17:59
13 [Plugin] AnimShader library 첨부파일 푸딩뱃살 3764 2018.01.23 11:25
12 [Plugin] Mesh Reorder / Transfer vertex position Tool - Mesh Pick 사진 첨부파일 푸딩뱃살 3578 2018.01.17 16:35
11 [FX] PhysX Clothing 간략 프로세스 (with Maya) 사진 첨부파일 푸딩뱃살 2591 2017.11.10 14:35
10 [Modeling] Text 사용 사진 첨부파일 푸딩뱃살 3322 2017.10.25 10:39
9 [Plugin] SHAPES 첨부파일 푸딩뱃살 3366 2017.09.04 16:03
>> [Dev] Maya Python API 2.0 : 나의 첫 플러그인 Hello World! 첨부파일 푸딩뱃살 4117 2017.05.19 18:48
7 [Dev] Maya devkit 설정 푸딩뱃살 3424 2017.05.18 14:23
6 [Dev] Maya 2013 64bit *.mll을 만들기 위한 Visual Studio Express 2013 첨부파일 푸딩뱃살 7027 2015.08.07 20:42
5 [Plugin] OutlinerPlus v1.3 첨부파일 푸딩뱃살 4744 2015.03.04 02:25
4 [Plugin] Advanced Skeleton 첨부파일 푸딩뱃살 6895 2013.04.14 13:15
3 [Plugin] Studio Library for Maya 첨부파일 푸딩뱃살 6590 2013.04.10 02:31
2 [Dev] Visual Studio 2012 Express에서 Maya Plugin 개발 첨부파일 artsOne 6811 2013.01.08 13:38
1 [Plugin] Mel Studio Pro v1.1.0 for Maya 6.5, 7 첨부파일 artsOne 4446 2008.03.10 18:35