maya 粒子替代物体转为实体物体的方法 Mel脚本代码

2023-10-08 16:20

本文主要是介绍maya 粒子替代物体转为实体物体的方法 Mel脚本代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一个学生问如何把maya 粒子替代物体转为实体物体的方法脚本代码。我把以前用于一个广告项目的插件代码提取了一下。得到下面两个程序。可以实现以上功能。但需要注意的是,前提要提供粒子镁粒子物体的旋转和缩放属性名,以及粒子的种子物id属相名。此代码源于以前开发的 垃圾清道夫插件中的一个功能。也可以将物体转为粒子。便于加速动力学效果。
在这里插入图片描述

global proc string[] tjh_rubbish_dumper__select_seeds_from_particle(string $nParticle) 
{
string $all_tjh_tree_factory__objects[];
clear $all_tjh_tree_factory__objects;//$all_tjh_tree_factory__objects = `ls -dag  -type "particle" -type "nParticle" -sl`;if(size($nParticle)>0)
{
$all_tjh_tree_factory__objects = `ls  -dag -type "particle" -type "nParticle" $nParticle `;
}else{
$all_tjh_tree_factory__objects = `ls  -dag -type "particle" -type "nParticle" -sl`;
}string $particleShape = "";
string $seeds[];int $k = 0;
int $h = 0;
for($particleShape in $all_tjh_tree_factory__objects)
{
string $instancers[]=` listConnections -s 0 -d 1 ($particleShape ".instanceData")`;string $instancerObjs[]=` instancer -q -object $instancers[0]`;for($k=0;$k{$seeds[$h]=$instancerObjs[$k];$h ;}
};
//select -r $all_valid_tjh_objects;//particleShapes
select -r $seeds;//instancer seed objects
//select -add $instancerNodes;//instancer nodes
return $seeds;
}//粒子转换为实例物体 
global proc tjh_rubbish_dumper_replaceParticles_withObjects(string $nParticle, string $instancerPP,string $rotationPP,string $scalePP)
{
string $particleNode[];
//default define for none selected
if($instancerPP == "")  $instancerPP = "instancerPP";
if($rotationPP == "")  $rotationPP = "rotationPP";
if($scalePP == "")  $scalePP = "scalePP";if(size($nParticle)>0)
{
$particleNode = `ls  -dag -type "particle" -type "nParticle" $nParticle `;
}else{
$particleNode = `ls  -dag -type "particle" -type "nParticle" -sl`;
}if(size($particleNode) > 0)//判断选择物体有粒子物体
{
//得到种子物体
string $tjh_replaceWithInstancer_selectSeeds[];
$tjh_replaceWithInstancer_selectSeeds=`tjh_rubbish_dumper__select_seeds_from_particle("")`;//保存原有种子物的原始位置及缩放旋转值
float $old_posX[],$old_posY[],$old_posZ[];
//float $old_rotateX[],$old_rotateY[],$old_rotateZ[];
//float $old_scaleX[],$old_scaleY[],$old_scaleZ[];
for($i = 0; $i
{
$old_posX[$i] = ` getAttr  ($tjh_replaceWithInstancer_selectSeeds[$i] "." "tx") `;
$old_posY[$i] = ` getAttr  ($tjh_replaceWithInstancer_selectSeeds[$i] "." "ty") `;
$old_posZ[$i] = ` getAttr  ($tjh_replaceWithInstancer_selectSeeds[$i] "." "tz") `;}for($i = 0; $i
{
setAttr  ($tjh_replaceWithInstancer_selectSeeds[$i] "." "tx") 0 ;
setAttr  ($tjh_replaceWithInstancer_selectSeeds[$i] "." "ty") 0 ;
setAttr  ($tjh_replaceWithInstancer_selectSeeds[$i] "." "tz") 0 ;}int $seedsSize = size($tjh_replaceWithInstancer_selectSeeds) ;int $particlePointsSize = `getAttr ($particleNode[0] ".count")` ;//float $instancerPP[] =`getParticleAttr -at "instancerPP" -array true ($particleNode[0] ".pt[0:" ($seedsSize-1) "]")`;
//float $rotatePP[] =`getParticleAttr -at "rotationPP" -array true ($particleNode[0] ".pt[0:" ($seedsSize-1) "]")`;
//float $scalePP[] =`getParticleAttr -at "scalePP" -array true ($particleNode[0] ".pt[0:" ($seedsSize-1) "]")`;float $instancerPP_Array[];
float $rotatePP_Array[];
float $scalePP_Array[];if(` objExists  ($particleNode[0] "." $instancerPP)`)$instancerPP_Array =`getParticleAttr -at $instancerPP -array true $particleNode[0]`;
if(` objExists  ($particleNode[0] "." $rotationPP)`)$rotatePP_Array =`getParticleAttr -at $rotationPP -array true $particleNode[0]`;
if(` objExists  ($particleNode[0] "." $scalePP)`)$scalePP_Array =`getParticleAttr -at $scalePP -array true $particleNode[0]`;string $newObject_instancer[];
//replace process
for($i=0;$i<$particlePointsSize;$i )
{
//int $id = floor( rand($seedsSize) );
int $id =0;if(` objExists  ($particleNode[0] "." $instancerPP)`)$id= $instancerPP_Array[$i];string $newObject[]; 
//string $copyType =`radioCollection -q -select  tjh_replaceWithInstancer__radioCollection_copyType`;
//if($copyType == "tjh_replaceWithInstancer__radioButton_copyType_copy")
// $newObject= ` duplicate $tjh_replaceWithInstancer_selectSeeds[$id]`;
//if($copyType == "tjh_replaceWithInstancer__radioButton_copyType_instance")
$newObject= ` instance $tjh_replaceWithInstancer_selectSeeds[$id]`;
$newObject_instancer[$i] = $newObject[0];
float $positionPP_Array[] =`pointPosition -world ($particleNode[0] ".pt[" $i "]")`;string $cmd = "xform -r -t " ($positionPP_Array[0]) " " ($positionPP_Array[1]) " " ($positionPP_Array[2]) " ";
if(` objExists  ($particleNode[0] "." $rotationPP)`)  $cmd =" -ro " ($rotatePP_Array[$i*3]) " " ($rotatePP_Array[$i*3 1]) " " ($rotatePP_Array[$i*3 2]) " ";
if(` objExists  ($particleNode[0] "." $scalePP)`) $cmd =" -s " ($scalePP_Array[$i*3]) " " ($scalePP_Array[$i*3 1]) " " ($scalePP_Array[$i*3 2]) " ";$cmd =  $newObject[0];
eval_r($cmd);//xform -r -t ($positionPP[0]) ($positionPP[1]) ($positionPP[2]) -ro ($rotatePP[$i*3]) ($rotatePP[$i*3 1]) ($rotatePP[$i*3 2]) -s ($scalePP[$i*3]) ($scalePP[$i*3 1]) ($scalePP[$i*3 2]) $newObject[0];}//create new group for instancer-objs.
group -world -n ("tjh_rubbish_dumper_" $particleNode[0]) $newObject_instancer;
//delete $particle;//恢复原有位置
for($i = 0; $i
{
setAttr  ($tjh_replaceWithInstancer_selectSeeds[$i] "." "tx") $old_posX[$i] ;
setAttr  ($tjh_replaceWithInstancer_selectSeeds[$i] "." "ty") $old_posY[$i] ;
setAttr  ($tjh_replaceWithInstancer_selectSeeds[$i] "." "tz") $old_posZ[$i] ;}}else{warning "no particle selected!";}
}

南无阿弥陀佛

这篇关于maya 粒子替代物体转为实体物体的方法 Mel脚本代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/166526

相关文章

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

活用c4d官方开发文档查询代码

当你问AI助手比如豆包,如何用python禁止掉xpresso标签时候,它会提示到 这时候要用到两个东西。https://developers.maxon.net/论坛搜索和开发文档 比如这里我就在官方找到正确的id描述 然后我就把参数标签换过来

浅谈主机加固,六种有效的主机加固方法

在数字化时代,数据的价值不言而喻,但随之而来的安全威胁也日益严峻。从勒索病毒到内部泄露,企业的数据安全面临着前所未有的挑战。为了应对这些挑战,一种全新的主机加固解决方案应运而生。 MCK主机加固解决方案,采用先进的安全容器中间件技术,构建起一套内核级的纵深立体防护体系。这一体系突破了传统安全防护的局限,即使在管理员权限被恶意利用的情况下,也能确保服务器的安全稳定运行。 普适主机加固措施:

webm怎么转换成mp4?这几种方法超多人在用!

webm怎么转换成mp4?WebM作为一种新兴的视频编码格式,近年来逐渐进入大众视野,其背后承载着诸多优势,但同时也伴随着不容忽视的局限性,首要挑战在于其兼容性边界,尽管WebM已广泛适应于众多网站与软件平台,但在特定应用环境或老旧设备上,其兼容难题依旧凸显,为用户体验带来不便,再者,WebM格式的非普适性也体现在编辑流程上,由于它并非行业内的通用标准,编辑过程中可能会遭遇格式不兼容的障碍,导致操

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

透彻!驯服大型语言模型(LLMs)的五种方法,及具体方法选择思路

引言 随着时间的发展,大型语言模型不再停留在演示阶段而是逐步面向生产系统的应用,随着人们期望的不断增加,目标也发生了巨大的变化。在短短的几个月的时间里,人们对大模型的认识已经从对其zero-shot能力感到惊讶,转变为考虑改进模型质量、提高模型可用性。 「大语言模型(LLMs)其实就是利用高容量的模型架构(例如Transformer)对海量的、多种多样的数据分布进行建模得到,它包含了大量的先验

【北交大信息所AI-Max2】使用方法

BJTU信息所集群AI_MAX2使用方法 使用的前提是预约到相应的算力卡,拥有登录权限的账号密码,一般为导师组共用一个。 有浏览器、ssh工具就可以。 1.新建集群Terminal 浏览器登陆10.126.62.75 (如果是1集群把75改成66) 交互式开发 执行器选Terminal 密码随便设一个(需记住) 工作空间:私有数据、全部文件 加速器选GeForce_RTX_2080_Ti

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

Linux服务器Java启动脚本

Linux服务器Java启动脚本 1、初版2、优化版本3、常用脚本仓库 本文章介绍了如何在Linux服务器上执行Java并启动jar包, 通常我们会使用nohup直接启动,但是还是需要手动停止然后再次启动, 那如何更优雅的在服务器上启动jar包呢,让我们一起探讨一下吧。 1、初版 第一个版本是常用的做法,直接使用nohup后台启动jar包, 并将日志输出到当前文件夹n

代码随想录冲冲冲 Day39 动态规划Part7

198. 打家劫舍 dp数组的意义是在第i位的时候偷的最大钱数是多少 如果nums的size为0 总价值当然就是0 如果nums的size为1 总价值是nums[0] 遍历顺序就是从小到大遍历 之后是递推公式 对于dp[i]的最大价值来说有两种可能 1.偷第i个 那么最大价值就是dp[i-2]+nums[i] 2.不偷第i个 那么价值就是dp[i-1] 之后取这两个的最大值就是d