摘要:
PySide PyQt 版本基本兼容处理 # -*- coding: utf-8 -*- try: from PySide import QtCore, QtGui from PySide import QtGui as QtWidgets except: from PySide2 import Q 阅读全文
摘要:
Maya导出FBX后,FBX导入UE4的材质顺序 参考连接:Solved: Manage materials order - Autodesk Community - Maya objMaterials = [] objs = cmds.ls(sl=True) allFaces = cmds.pol 阅读全文
摘要:
bat 判断字符串变量是否为空 set val=ddd if "%val%" == "" ( echo 字符串为空 ) pause 阅读全文
摘要:
Python 编译 pyc import py_compile sourceFile = 'd:/test.py' targetFile = 'd:/test.pyc' py_compile.compile(sourceFile, cfile = targetFile) 阅读全文
摘要:
Python在cmd中运行一段字符串 python -c "print 'a'" 阅读全文
摘要:
Photoshop javascript 获取系统环境变量 $.getenv() #target photoshop alert($.getenv('USERNAME')); 阅读全文
摘要:
unreal python commandlet print log import unreal unreal.log_warning("your message") unreal.log_error("your message") unreal.log("your message") 似乎不会在终 阅读全文
摘要:
row major: obj_relative = obj_world * coordinate_relative.inverse() obj_world = obj_relative * coordinate_relative 阅读全文
摘要:
UE4 Visual Studio 工程修改使用的VS版本 1.打开UE4 编辑器 Edit->Editor Preferences->General->Source Code,改为自己需要的版本 2.在VS中,右键工程,retarget projects 如果你卸载了之前的版本,而ue4设置里面使 阅读全文
摘要:
参考链接:https://mayastation.typepad.com/maya-station/2010/07/need-to-know-which-polygon-shell-contains-a-given-face-.html Need to know which polygon shel 阅读全文