- 浏览: 205224 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
悲梦天下:
楼主,有些视频到一半就没声音了,怎么破!!!
python视频教程 更新22(完) -
schi:
啊,我太傻了,都想到使用uv了,可以有更简单的方法,只要把uv ...
Get Reversed Normal Faces(获取反法线面) [原理] -
schi:
相对Pillow和PySide而言,显示图片opengl就显得 ...
display an image with pyopengl and Pillow -
schi:
我也是今天才偶然想到的,我以后可能用不着了,所有分享给有需要的 ...
Get Reversed Normal Faces(获取反法线面) [原理] -
baiyanbin:
支持楼主原创,关注楼主博客有一阵子了,国内认真认真搞技术的太少 ...
python视频教程 更新22(完)
geomShader.py是使用API编写maya材质的简单的例子,是的API也可以用来写自定义材质。
为了方便我就直接复制帮助文档里的geomShader.py内容过来,加入适当的注释,要试用的话可以直接加载devkit\plug-ins\scripted中的geomShader.py,你会在Hypershade的utility栏下的color中找到"spGeomShader"
值得注意的是添加属性的方法,和注册插件的方法的变动
在线版本
http://download.autodesk.com/us/maya/2011help/API/geom_shader_8py-example.html
为了方便我就直接复制帮助文档里的geomShader.py内容过来,加入适当的注释,要试用的话可以直接加载devkit\plug-ins\scripted中的geomShader.py,你会在Hypershade的utility栏下的color中找到"spGeomShader"
import sys import maya.OpenMaya as OpenMaya import maya.OpenMayaMPx as OpenMayaMPx # 材质的名称 kPluginNodeName = "spGeomShader" # 材质所在的位置 kPluginNodeClassify = "utility/color" # 材质节点的类型ID kPluginNodeId = OpenMaya.MTypeId(0x8700E) # 定义材质类 class geomShader(OpenMayaMPx.MPxNode): def __init__(self): OpenMayaMPx.MPxNode.__init__(self) # 节点属性 aOutColor = OpenMaya.MObject() aPoint = OpenMaya.MObject() aScale = OpenMaya.MObject() aOffset = OpenMaya.MObject() def compute(self, plug, block): if plug == geomShader.aOutColor or plug.parent() == geomShader.aOutColor: # 初始化结果变量 resultColor = OpenMaya.MFloatVector(0.0,0.0,0.0) # 获取属性的数值 point = block.inputValue( geomShader.aPoint ).asFloatVector() scale = block.inputValue( geomShader.aScale ).asFloatVector() offset = block.inputValue( geomShader.aOffset ).asFloatVector() # 计算出我们需要的结果 resultColor.x = point.x * scale.x + offset.x resultColor.y = point.y * scale.y + offset.y resultColor.x = point.z * scale.z + offset.z # 将结果赋予输出属性,并更新节点 outColorHandle = block.outputValue( geomShader.aOutColor ) outColorHandle.setMFloatVector(resultColor) outColorHandle.setClean() else: return OpenMaya.kUnknownParameter # 节点创建函数 def nodeCreator(): return OpenMayaMPx.asMPxPtr( geomShader() ) # 节点初始化函数 def nodeInitializer(): nAttr = OpenMaya.MFnNumericAttribute() try: # 给节点创建pointObj属性 geomShader.aPoint = nAttr.createPoint("pointObj", "p") nAttr.setStorable(0) nAttr.setHidden(1) # 给节点创建scale属性 geomShader.aScale = nAttr.createPoint("scale", "s") nAttr.setKeyable(1) nAttr.setStorable(1) nAttr.setReadable(1) nAttr.setWritable(1) nAttr.setDefault(1.0, 1.0, 1.0) # 给节点创建offset属性 geomShader.aOffset = nAttr.createPoint("offset", "o") nAttr.setKeyable(1) nAttr.setStorable(1) nAttr.setReadable(1) nAttr.setWritable(1) # 给节点创建outColor属性 geomShader.aOutColor = nAttr.createColor("outColor", "oc") nAttr.setStorable(0) nAttr.setHidden(0) nAttr.setReadable(1) nAttr.setWritable(0) except: sys.stderr.write("Failed to create attributes\n") raise try: # 将所创建的属性添加给节点 geomShader.addAttribute(geomShader.aPoint) geomShader.addAttribute(geomShader.aScale) geomShader.addAttribute(geomShader.aOffset) geomShader.addAttribute(geomShader.aOutColor) except: sys.stderr.write("Failed to add attributes\n") raise try: # 建立属性之间的影响关系 geomShader.attributeAffects (geomShader.aPoint, geomShader.aOutColor) geomShader.attributeAffects (geomShader.aScale, geomShader.aOutColor) geomShader.attributeAffects (geomShader.aOffset, geomShader.aOutColor) except: sys.stderr.write("Failed in setting attributeAffects\n") raise # initialize the script plug-in def initializePlugin(mobject): mplugin = OpenMayaMPx.MFnPlugin(mobject) try: mplugin.registerNode( kPluginNodeName, kPluginNodeId, nodeCreator, nodeInitializer, OpenMayaMPx.MPxNode.kDependNode, kPluginNodeClassify ) except: sys.stderr.write( "Failed to register node: %s" % kPluginNodeName ) raise # uninitialize the script plug-in def uninitializePlugin(mobject): mplugin = OpenMayaMPx.MFnPlugin(mobject) try: mplugin.deregisterNode( kPluginNodeId ) except: sys.stderr.write( "Failed to deregister node: %s" % kPluginNodeName ) raise
值得注意的是添加属性的方法,和注册插件的方法的变动
在线版本
http://download.autodesk.com/us/maya/2011help/API/geom_shader_8py-example.html
发表评论
-
uv重叠(uv overlap)
2014-06-28 22:28 5356两年多前我需要解决uv重叠的问题,当时觉得是一个挺有挑 ... -
GPU, Python and Maya
2013-06-27 17:32 3139Here an example how to use pyop ... -
sierpinski triangle 2d maya plug-in(with python API 2.0)
2012-11-07 16:55 2339因为python API 2.0可用的类很少,OpenMaya ... -
sierpinski triangle 2d in maya(with python API 2.0)
2012-10-22 20:41 2029在国庆前我刚好完成手上的工作,有两三天的空闲,于是就去 ... -
mel,cmds,python API哪个更快?
2012-09-13 14:37 3957昨天偶然的跟同事谈论 ... -
Maya Python API 2.0 - MGlobal
2012-08-31 18:07 2313MGlobal是一个静态类,提供通用的API涵数. 包括获取m ... -
Maya Python API 2.0 - MSelectionList
2012-07-09 14:03 2546从Maya2012开始我们迎来了新的Python API, ... -
createDynamicCache v0.1
2011-01-09 13:57 1704createDynamicCache是我的第二个maya ... -
run time dynamic node
2010-09-14 23:51 1077大概一个月前我就写好了,但一直没时间整理,这个节点和我以前写的 ... -
scanDagCmd
2010-09-14 21:09 1618scanDag命令以depth first(深度优先)或bre ... -
Helix2Cmd
2010-08-28 16:39 1374不知道大家还记不记得之前的helixCmd,这个helix2C ... -
迭代所选的组件(component)
2010-04-26 21:36 1700我们已经知道如何对物体进行选择,但如果对象是compone ... -
API中的选择操作
2010-04-25 18:06 1690我们已经知道如何使用API获取当前所选物体,但单是获取当前 ... -
使用API获取当前所选物体
2010-03-03 20:28 1932获取当前所选物体,是在编写工具时经常用到的,我们来看看API和 ... -
circleNode.py
2009-11-23 21:12 1794自定义节点 使用方法 在脚本编辑器中的python面板执行c ... -
basicObjectSet.py
2009-11-18 20:14 1198这是一个自定义节点和命令都同时存在的一个例子。 basi ... -
animCubeNode.py
2009-11-13 22:54 1406一个节点例子。该节点有一个time输入属性用来连接时间或设置关 ... -
zoomCameraCmd
2009-11-08 14:57 1078helixCmd是一个带命令参数的命令,但执行之后是无法撤销的 ... -
sineNode.py
2009-10-29 21:03 1249前面的helloWorldCmd.py和helixCmd.py ... -
helixCmd.py
2009-10-25 22:13 2044之前的helloWorldCmd.py只是 ...
相关推荐
osgEarth 的 121 个案例详解 osgEarth 的 121 个案例详解 ...........................................................................................................1 1. aeqd.earth...........................
给新学习OpenGL shader的同学写的一系列demo(原创) 第0课 开发环境setup 第1课 triangle:用...第4课 GeomShader:简单的geometry shader 第5课 GLSLGpuShallowWater:GPGPU(GPU通用计算)实现水面波纹模拟和绘制
ta_lib-0.5.1-cp312-cp312-win32.whl
课程设计 在线实时的斗兽棋游戏,时间赶,粗暴的使用jQuery + websoket 实现实时H5对战游戏 + java.zip课程设计
ta_lib-0.5.1-cp310-cp310-win_amd64.whl
基于springboot+vue物流系统源码数据库文档.zip
GEE训练教程——Landsat5、8和Sentinel-2、DEM和各2哦想指数下载
知识图谱
333498005787635解决keil下载失败的文件.zip
【微信机器人原理与实现】 微信机器人是通过模拟微信客户端的行为,自动处理消息、发送消息的程序。在Python中实现微信机器人的主要库是WeChatBot,它提供了丰富的接口,允许开发者方便地进行微信消息的接收与发送。这个项目标题中的"基于python实现的微信机器人源码"指的是使用Python编程语言编写的微信机器人程序。 1. **Python基础**:Python是一种高级编程语言,以其简洁的语法和强大的功能深受开发者喜爱。在实现微信机器人时,你需要熟悉Python的基本语法、数据类型、函数、类以及异常处理等概念。 2. **微信API与WeChatBot库**:微信为开发者提供了微信公共平台和微信开放平台,可以获取到必要的API来实现机器人功能。WeChatBot库是Python中一个用于微信开发的第三方库,它封装了微信的API,简化了消息处理的流程。使用WeChatBot,开发者可以快速搭建起一个微信机器人。 3. **微信OAuth2.0授权**:为了能够接入微信,首先需要通过OAuth2.0协议获取用户的授权。用户授权后,机器人可以获取到微信用户的身份信息,从而进行
基于springboot实验室研究生信息管理系统源码数据库文档.zip
张力控制,色标跟踪,多轴同步,电子凸轮,横切等工艺控制案例。
在Python编程环境中,处理Microsoft Word文档是一项常见的任务。Python提供了几个库来实现这一目标,如`python-docx`,它可以让我们创建、修改和操作.docx文件。本教程将重点介绍如何利用Python进行Word文档的合并、格式转换以及转换为PDF。 1. **合并Word文档(merge4docx)** 合并多个Word文档是一项实用的功能,特别是在处理大量报告或文档集合时。在Python中,可以使用`python-docx`库实现。我们需要导入`docx`模块,然后读取每个文档并将其内容插入到主文档中。以下是一个基本示例: ```python from docx import Document def merge4docx(file_list, output_file): main_doc = Document() for file in file_list: doc = Document(file) for paragraph in doc.paragraphs: main_doc.add_paragraph(paragraph.text) m
基于springboot+Javaweb的二手图书交易系统源码数据库文档.zip
基于springboot餐品美食论坛源码数据库文档.zip
基于springboot亚运会志愿者管理系统源码数据库文档.zip
使用WPF的数据样式绑定,切换对象数据值来完成控件动态切换背景渐变动画效果。 使用动画样式渲染比线程修改性能消耗更低更稳定
基于SpringBoot的企业客源关系管理系统源码数据库文档.zip
基于springboot+vue的桂林旅游网站系统源码数据库文档.zip
基于springboot嗨玩旅游网站源码数据库文档.zip