- 浏览: 206929 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
悲梦天下:
楼主,有些视频到一半就没声音了,怎么破!!!
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(完)
scanDag命令以depth first(深度优先)或breadth first(广度优先)来迭代整个DAG,输出每个节点的名称和深度等信息,这个命令插件例子中只对相机、灯光、NURBS surfaces进行支持。
在maya的Plug-in Manager中加载scanDagCmd.py,然后你可以随便创建一些相机、灯光、NURBS surfaces,并对它们进行位移等属性调整,然后分别执行
// -d 为深度优先,-b 为广度优先 // 相机 scanDag -d 1 -c 1; // 灯光 scanDag -d 1 -l 1; // NURBS surfaces scanDag -d 1 -l 1; // 或全部一起 scanDag -d 1 -c 1 -l 1 -n 1;
或
import maya.cmds as cmds # 相机 cmds.scanDag(d=1, c=1) # 灯光 cmds.scanDag(d=1, l=1)
你会得到类似的输出结果
Output
Starting Depth First scan of the Dag: Filtering for Cameras
perspShape: camera
dagPath: |persp|perspShape
translation: 28.000000 21.000000 28.000000
rotation: [-0.487616, 0.785398, 0.000000]
scale: [1.000000, 1.000000, 1.000000]
eyePoint: 28.000000 21.000000 28.000000
upDirection: -0.331295 0.883452 -0.331295
viewDirection: -0.624695 -0.468521 -0.624695
aspectRatio: 1.500000
horizontalFilmAperture: 1.417320
verticalFilmAperture: 0.944880
topShape: camera
dagPath: |top|topShape
translation: 0.000000 100.100000 0.000000
rotation: [-1.570796, 0.000000, 0.000000]
scale: [1.000000, 1.000000, 1.000000]
eyePoint: 0.000000 100.100000 0.000000
upDirection: 0.000000 0.000000 -1.000000
viewDirection: 0.000000 -1.000000 -0.000000
aspectRatio: 1.500000
horizontalFilmAperture: 1.417320
verticalFilmAperture: 0.944880
frontShape: camera
dagPath: |front|frontShape
translation: 0.000000 0.000000 100.100000
rotation: [0.000000, -0.000000, 0.000000]
scale: [1.000000, 1.000000, 1.000000]
eyePoint: 0.000000 0.000000 100.100000
upDirection: 0.000000 1.000000 0.000000
viewDirection: 0.000000 0.000000 -1.000000
aspectRatio: 1.500000
horizontalFilmAperture: 1.417320
verticalFilmAperture: 0.944880
sideShape: camera
dagPath: |side|sideShape
translation: 100.100000 0.000000 0.000000
rotation: [-0.000000, 1.570796, 0.000000]
scale: [1.000000, 1.000000, 1.000000]
eyePoint: 100.100000 0.000000 0.000000
upDirection: 0.000000 1.000000 0.000000
viewDirection: -1.000000 0.000000 -0.000000
aspectRatio: 1.500000
horizontalFilmAperture: 1.417320
verticalFilmAperture: 0.944880
// Result: 4 //
perspShape: camera
dagPath: |persp|perspShape
translation: 28.000000 21.000000 28.000000
rotation: [-0.487616, 0.785398, 0.000000]
scale: [1.000000, 1.000000, 1.000000]
eyePoint: 28.000000 21.000000 28.000000
upDirection: -0.331295 0.883452 -0.331295
viewDirection: -0.624695 -0.468521 -0.624695
aspectRatio: 1.500000
horizontalFilmAperture: 1.417320
verticalFilmAperture: 0.944880
topShape: camera
dagPath: |top|topShape
translation: 0.000000 100.100000 0.000000
rotation: [-1.570796, 0.000000, 0.000000]
scale: [1.000000, 1.000000, 1.000000]
eyePoint: 0.000000 100.100000 0.000000
upDirection: 0.000000 0.000000 -1.000000
viewDirection: 0.000000 -1.000000 -0.000000
aspectRatio: 1.500000
horizontalFilmAperture: 1.417320
verticalFilmAperture: 0.944880
frontShape: camera
dagPath: |front|frontShape
translation: 0.000000 0.000000 100.100000
rotation: [0.000000, -0.000000, 0.000000]
scale: [1.000000, 1.000000, 1.000000]
eyePoint: 0.000000 0.000000 100.100000
upDirection: 0.000000 1.000000 0.000000
viewDirection: 0.000000 0.000000 -1.000000
aspectRatio: 1.500000
horizontalFilmAperture: 1.417320
verticalFilmAperture: 0.944880
sideShape: camera
dagPath: |side|sideShape
translation: 100.100000 0.000000 0.000000
rotation: [-0.000000, 1.570796, 0.000000]
scale: [1.000000, 1.000000, 1.000000]
eyePoint: 100.100000 0.000000 0.000000
upDirection: 0.000000 1.000000 0.000000
viewDirection: -1.000000 0.000000 -0.000000
aspectRatio: 1.500000
horizontalFilmAperture: 1.417320
verticalFilmAperture: 0.944880
// Result: 4 //
scanDagCmd.py
# -*- coding: UTF-8 -*- import sys import maya.OpenMaya as om import maya.OpenMayaMPx as ompx # 命令名称 kCmdName = 'scanDag' # 命令参数 kBreadthFlag = '-b' kBreadthFlagLong = 'breadthFirst' kDepthFlag = '-d' kDepthFlagLong = '-depthFirst' kCameraFlag = '-c' kCameraFlagLong = '-cameras' kLightFlag = '-l' kLightFlagLong = '-lights' kNurbsSurfaceFlag = '-n' kNurbsSurfaceFlagLong = '-nurbsSurfaces' kQuietFlag = '-q' kQuietFlagLong = '-quiet' # 定义命令 class ScanDag(ompx.MPxCommand): def __init__(self): super(ScanDag, self).__init__() def doIt(self, args): # 初始化默认变量,防止无参数命令出现 self._traversalType = om.MItDag.kDepthFirst self._filter = om.MFn.kInvalid self._quiet = False self.__parseArgs(args) return self.__doScan() def __parseArgs(self, args): ''' 检查命令所给的参数,并设置相应的变量 ''' argData = om.MArgDatabase(self.syntax(), args) if argData.isFlagSet(kBreadthFlag) or argData.isFlagSet(kBreadthFlagLong): self._traversalType = om.MItDag.kBreadthFirst if argData.isFlagSet(kDepthFlag) or argData.isFlagSet(kDepthFlagLong): self._traversalType = om.MItDag.kDepthFirst if argData.isFlagSet(kCameraFlag) or argData.isFlagSet(kCameraFlagLong): self._filter = om.MFn.kCamera if argData.isFlagSet(kLightFlag) or argData.isFlagSet(kLightFlagLong): self._filter = om.MFn.kLight if argData.isFlagSet(kNurbsSurfaceFlag) or argData.isFlagSet(kNurbsSurfaceFlagLong): self._filter = om.MFn.kNurbsSurface if argData.isFlagSet(kQuietFlag) or argData.isFlagSet(kQuietFlagLong): self._quiet = True return True def __doScan(self): ''' 完成实际的工作 ''' # 创建dag迭代器 dagIterator = om.MItDag(self._traversalType, self._filter) # Scan the entire DAG and output the name and depth of each node # 扫描整个DAG,输出每个节点的名称和深度 if self._traversalType == om.MItDag.kBreadthFirst: if not self._quiet: sys.stdout.write('Starting Breadth First scan of the Dag') else: if not self._quiet: sys.stdout.write('Starting Depth First scan of the Dag') if self._filter == om.MFn.kCamera: if not self._quiet: sys.stdout.write(': Filtering for Cameras\n') elif self._filter == om.MFn.kLight: if not self._quiet: sys.stdout.write(': Filtering for Lights\n') elif self._filter == om.MFn.kNurbsSurface: if not self._quiet: sys.stdout.write(': Filtering for Nurbs Surfaces\n') else: sys.stdout.write('\n') # 对DAG里的每个节点进行迭代 objectCount = 0 while not dagIterator.isDone(): dagPath = om.MDagPath() # 获取节点的DAG路径 dagIterator.getPath(dagPath) # 使用方法集来操作节点 dagNode = om.MFnDagNode(dagPath) # 输出节点的名称,类型,全路径 if not self._quiet: sys.stdout.write('%s: %s\n' % (dagNode.name(), dagNode.typeName())) if not self._quiet: sys.stdout.write(' dagPath: %s\n' % dagPath.fullPathName()) # 判别节点的类型,这里只对相机、灯光、NURBS surfaces进行操作 # 实际上是可以对任意类型,进行相应的操作 objectCount += 1 if dagPath.hasFn(om.MFn.kCamera): camera = om.MFnCamera(dagPath) # Get the translation/rotation/scale data # 获取translation/rotation/scale等数据 self.__printTransformData(dagPath) # Extract some interesting Camera data # 分离一些有趣的相机数据 if not self._quiet: eyePoint = camera.eyePoint(om.MSpace.kWorld) upDirection = camera.upDirection(om.MSpace.kWorld) viewDirection = camera.viewDirection(om.MSpace.kWorld) aspectRatio = camera.aspectRatio() hfa = camera.horizontalFilmAperture() vfa = camera.verticalFilmAperture() sys.stdout.write(" eyePoint: %f %f %f\n" % (eyePoint.x, eyePoint.y, eyePoint.z)) sys.stdout.write(" upDirection: %f %f %f\n" % (upDirection.x, upDirection.y, upDirection.z)) sys.stdout.write(" viewDirection: %f %f %f\n" % (viewDirection.x, viewDirection.y, viewDirection.z)) sys.stdout.write(" aspectRatio: %f\n" % aspectRatio) sys.stdout.write(" horizontalFilmAperture: %f\n" % hfa) sys.stdout.write(" verticalFilmAperture: %f\n" % vfa) elif dagPath.hasFn(om.MFn.kLight): light = om.MFnLight(dagPath) # Get the translation/rotation/scale data # 获取translation/rotation/scale等数据 self.__printTransformData(dagPath) # Extract some interesting Light data # 分离一些有趣的灯光数据 color = om.MColor() color = light.color() if not self._quiet: sys.stdout.write(" color: [%f, %f, %f]\n" % (color.r, color.g, color.b)) color = light.shadowColor() if not self._quiet: sys.stdout.write(" shadowColor: [%f, %f, %f]\n" % (color.r, color.g, color.b)) sys.stdout.write(" intensity: %f\n" % light.intensity()) elif dagPath.hasFn(om.MFn.kNurbsSurface): surface = om.MFnNurbsSurface(dagPath) # Get the translation/rotation/scale data # 获取translation/rotation/scale等数据 self.__printTransformData(dagPath) # Extract some interesting Surface data # 分离一些有趣的NURBS surfaces数据 if not self._quiet: sys.stdout.write(" numCVs: %d * %d\n" % (surface.numCVsInU(), surface.numCVsInV())) sys.stdout.write(" numKnots: %d * %d\n" % (surface.numKnotsInU(), surface.numKnotsInV())) sys.stdout.write(" numSpans: %d * %d\n" % (surface.numSpansInU(), surface.numSpansInV())) else: # Get the translation/rotation/scale data # 获取translation/rotation/scale等数据 self.__printTransformData(dagPath) dagIterator.next() # 返回命令结果,这个结果为所操作的节点的数量值 self.setResult(objectCount) return om.MStatus.kSuccess def __printTransformData(self, dagPath): ''' 获取translation/rotation/scale等数据 ''' # 获取节点的Transform节点 transformNode = dagPath.transform() transform = om.MFnDagNode(transformNode) # 获取Transform的Transformation matrix matrix = om.MTransformationMatrix(transform.transformationMatrix()) if not self._quiet: # 获取节点的位移数值,并输出 translation = matrix.translation(om.MSpace.kWorld) sys.stdout.write(' translation: %f %f %f\n' % (translation.x, translation.y, translation.z)) #rOrder = om.MTransformationMatrix.kXYZ #matrix.getRotation(ptr, rOrder) # 获取节点的旋转数值,并输出 rotateOrder = 0 mquat = matrix.rotation() rot = mquat.asEulerRotation() rot.reorderIt(rotateOrder) if not self._quiet: sys.stdout.write(" rotation: [%f, %f, %f]\n" % (rot.x, rot.y, rot.z)) # 获取节点的缩放数值,并输出 # 这里需要使用MScriptUtil # 因为MTransformationMatrix.getScale() # 的第一个参数是C++里的指针 util = om.MScriptUtil() util.createFromDouble(0.0, 0.0, 0.0) ptr = util.asDoublePtr() matrix.getScale(ptr, om.MSpace.kWorld) scaleX = util.getDoubleArrayItem(ptr, 0) scaleY = util.getDoubleArrayItem(ptr, 1) scaleZ = util.getDoubleArrayItem(ptr, 2) if not self._quiet: sys.stdout.write(' scale: [%f, %f, %f]\n' % (scaleX, scaleY, scaleZ)) # Creator def cmdCreator(): return ompx.asMPxPtr(ScanDag()) # Syntax creator def syntaxCreator(): syntax = om.MSyntax() syntax.addFlag(kBreadthFlag, kBreadthFlagLong, om.MSyntax.kBoolean) syntax.addFlag(kDepthFlag, kDepthFlagLong, om.MSyntax.kBoolean) syntax.addFlag(kCameraFlag, kCameraFlagLong, om.MSyntax.kBoolean) syntax.addFlag(kLightFlag, kLightFlagLong, om.MSyntax.kBoolean) syntax.addFlag(kNurbsSurfaceFlag, kNurbsSurfaceFlagLong, om.MSyntax.kBoolean) syntax.addFlag(kQuietFlag, kQuietFlagLong, om.MSyntax.kBoolean) return syntax # Initialize the script plug-in def initializePlugin(mobj): mplugin = ompx.MFnPlugin(mobj, 'Mack Stone', '3.0', 'Any') try: mplugin.registerCommand(kCmdName, cmdCreator, syntaxCreator) except: sys.stderr.write('Failed to register command: %s\n' % kCmdName) raise # Uninitialize the script plug-in def uninitializePlugin(mobj): mplugin = ompx.MFnPlugin(mobj) try: mplugin.deregisterCommand(kCmdName) except: sys.stderr.write('Failed to unregister command: %s\n' % kCmdName) raise
你可以在devkit\plug-ins中找到scanDagCmd.cpp
在线版本
http://download.autodesk.com/us/maya/2010help/API/scan_dag_cmd_8cpp-example.html
发表评论
-
uv重叠(uv overlap)
2014-06-28 22:28 5412两年多前我需要解决uv重叠的问题,当时觉得是一个挺有挑 ... -
GPU, Python and Maya
2013-06-27 17:32 3168Here an example how to use pyop ... -
sierpinski triangle 2d maya plug-in(with python API 2.0)
2012-11-07 16:55 2375因为python API 2.0可用的类很少,OpenMaya ... -
sierpinski triangle 2d in maya(with python API 2.0)
2012-10-22 20:41 2044在国庆前我刚好完成手上的工作,有两三天的空闲,于是就去 ... -
mel,cmds,python API哪个更快?
2012-09-13 14:37 3971昨天偶然的跟同事谈论 ... -
Maya Python API 2.0 - MGlobal
2012-08-31 18:07 2324MGlobal是一个静态类,提供通用的API涵数. 包括获取m ... -
Maya Python API 2.0 - MSelectionList
2012-07-09 14:03 2555从Maya2012开始我们迎来了新的Python API, ... -
createDynamicCache v0.1
2011-01-09 13:57 1712createDynamicCache是我的第二个maya ... -
geomShader
2010-09-29 14:26 1299geomShader.py是使用API编写maya材质的简单的 ... -
run time dynamic node
2010-09-14 23:51 1092大概一个月前我就写好了,但一直没时间整理,这个节点和我以前写的 ... -
Helix2Cmd
2010-08-28 16:39 1417不知道大家还记不记得之前的helixCmd,这个helix2C ... -
迭代所选的组件(component)
2010-04-26 21:36 1735我们已经知道如何对物体进行选择,但如果对象是compone ... -
API中的选择操作
2010-04-25 18:06 1705我们已经知道如何使用API获取当前所选物体,但单是获取当前 ... -
使用API获取当前所选物体
2010-03-03 20:28 1943获取当前所选物体,是在编写工具时经常用到的,我们来看看API和 ... -
circleNode.py
2009-11-23 21:12 1807自定义节点 使用方法 在脚本编辑器中的python面板执行c ... -
basicObjectSet.py
2009-11-18 20:14 1208这是一个自定义节点和命令都同时存在的一个例子。 basi ... -
animCubeNode.py
2009-11-13 22:54 1448一个节点例子。该节点有一个time输入属性用来连接时间或设置关 ... -
zoomCameraCmd
2009-11-08 14:57 1095helixCmd是一个带命令参数的命令,但执行之后是无法撤销的 ... -
sineNode.py
2009-10-29 21:03 1262前面的helloWorldCmd.py和helixCmd.py ... -
helixCmd.py
2009-10-25 22:13 2070之前的helloWorldCmd.py只是 ...
相关推荐
基于transUnet和swinUnet的医学图像分割项目实验对比,包含完整代码,可以一键运行。评估指标包括dice、iou、recall、precision等
,stm32f030无感foc方案,资料包括原理图,pcb,源程序,观测器参数,电流环参数计算表格。
分布式电源DG选址定容优化及帕累托最优解集的粒子群算法研究,多目标粒子群算法 分布式电源 DG 定容选址 网损 成本 电压偏差 通过分布式能源的选址定容确定得到帕累托最优解集,然后选择最优值进行分析,程序采用改进粒子群算法, ,核心关键词:多目标粒子群算法; 分布式电源选址定容; 网损; 成本; 电压偏差; 帕累托最优解集。,改进粒子群算法在分布式电源选址定容中的应用:优化网损与成本,考虑电压偏差
交变磁场感应材料对沥青路面温度影响的研究,交变磁场下含感应材料沥青路面温度 ,交变磁场; 感应材料; 沥青路面; 温度; 变化; 加热效率,交变磁场对含感应材料沥青路面温度的影响研究
基于Comsol模拟的三层顶板随机裂隙浆液扩散模型:考虑重力影响的瞬态扩散规律分析,Comsol模拟,考虑三层顶板包含随机裂隙的浆液扩散模型,考虑浆液重力的影响,模型采用的DFN插件建立随机裂隙,采用达西定律模块中的储水模型为控制方程,分析不同注浆压力条件下的浆液扩散规律,建立瞬态模型 ,Comsol模拟; 随机裂隙浆液扩散模型; 浆液重力影响; DFN插件; 达西定律模块储水模型; 注浆压力条件; 浆液扩散规律; 瞬态模型,Comsol浆液扩散模型:随机裂隙下考虑重力的瞬态扩散分析
对于Sqlserver数据库只是提供了简单的图形化的导出导入工具,在实际的开发和生产环境不太可能让用户在图形化的界面选择移行的对象,进行移行。 我们在数据库的移行中也遇到这种问题,需要提供一个工具给客户使用。所以我们开发了针对SQLServer数据库的cmd形式导入导出的工具。在长期的实践中不断完善,基本可以实现Oracle的导入导出工具的80%的功能,也比较的稳定。有需要的可以下载使用,也可以提供定制化的服务
内容概要:本文介绍了DeepSeek模型在不同平台上部署的方法。首先阐述了基于Ollama的本地部署,包括Ollama的安装、模型拉取以及交互模式的使用。接着讲解了DeepSeek在移动设备(iOS和Android)上的部署细节:iPhone需要通过Safari安装快捷指令,配置API Key并通过快捷指令测试运行;Android则借助Termux安装必要组件,并手动搭建Ollama环境以加载和测试模型。最后详细叙述了基于Open WebUI部署的方式,涉及Ollama、Docker Desktop及Open WebUI的安装流程及其之间的配合使用来最终达成模型的成功部署。 适用人群:面向有兴趣了解或者实际操作DeepSeek模型跨平台部署的技术开发者、研究人员以及AI爱好者。 使用场景及目标:适用于希望利用DeepSeek模型快速构建本地化应用程序、开展实验研究的用户;具体目标为掌握DeepSeek模型在桌面系统(如Linux、macOS、Windows)、iOS和Android智能手机以及云端WebUI界面上的不同部署手段和技术。 其他说明:对于每种类型的部署都提供了详细的步骤指导,旨在帮助使用者顺利完成所需工具和环境的安装,并确保模型能够正常工作。文中给出的具体链接和命令行脚本,有助于降低初次接触者的上手难度,提升部署效率和成功率。此外,还强调了一些重要的配置注意事项,例如正确输入API key以及对Ollama的初始化检查等。
,FOC 无感 混合磁链观测器 电机控制 代码 PMSM MiniDD(直驱)电机变频无感程序,包含偏心,重量,共振等感知算法,所有算法都不基于库函数,MCU底层配置完全手写
nodejs010-nodejs-cmd-shim-1.1.0-4.1.el6.centos.alt.noarch.rpm
基于S7-200 PLC的交通灯倒计时控制及组态王界面实现原理图解析,S7-200 PLC和组态王交通灯带倒计时控制 923 47 带解释的梯形图接线图原理图图纸,io分配,组态画面 ,S7-200 PLC; 交通灯; 倒计时控制; 组态王; 梯形图接线图; IO分配; 组态画面,"S7-200 PLC与组态王交通灯倒计时控制:梯形图原理及IO分配详解"
西门子四轴卧加后处理系统:828D至840D兼容,四轴联动高效加工解决方案,支持图档处理及试看程序。,西门子四轴卧加后处理,支持828D~840D系统,支持四轴联动,可制制,看清楚联系,可提供图档处理试看程序 ,核心关键词:西门子四轴卧加后处理; 828D~840D系统支持; 四轴联动; 制程; 联系; 图档处理试看程序。,西门子四轴卧加后处理程序,支持多种系统与四轴联动
FPGA篮球赛事24秒倒计时计时器设计与实现(基于Verilog与VHDLL的优化对比),基于fpga篮球倒计时24s。 verilog和vhdl两个版本 ,基于FPGA篮球倒计时24s; Verilog版本; VHDL版本,FPGA篮球比赛倒计时24秒系统:Verilog与VHDL双版本实现
论生成式AI在大学生学习中的应用与伦理问题.pdf
免费JAVA毕业设计 2024成品源码+论文+数据库+启动教程 启动教程:https://www.bilibili.com/video/BV1SzbFe7EGZ 项目讲解视频:https://www.bilibili.com/video/BV1Tb421n72S 二次开发教程:https://www.bilibili.com/video/BV18i421i7Dx
"S7-200plc与MCGS智能居家控制系统的深度融合:组态画面、IO分配与梯形图接线图原理详解",No.63 S7-200plc和 MCGS智能居家控制系统组态 带解释的梯形图接线图原理图图纸,io分配,组态画面 ,核心关键词:S7-200plc; MCGS智能居家控制系统; 梯形图接线图原理图; io分配; 组态画面。,"S7-200 PLC与MCGS智能居家系统组态及梯形图原理图解析"
方便暖通工程师及板换用户了解艾齐尔板式换热器选型计算,免费使用。
《四层三列堆垛式立体库控制系统:带解释的梯形图接线原理图及IO分配与组态画面详解》,4x3堆垛式立体库4层3列四层三列书架式立体库控制系统 带解释的梯形图接线图原理图图纸,io分配,组态画面 ,立体库; 堆垛式; 控制系统; 梯形图; 接线图; 原理图; IO分配; 组态画面,"立体库控制系统原理图:四层三列堆垛式书架的IO分配与组态画面"
免费JAVA毕业设计 2024成品源码+论文+数据库+启动教程 启动教程:https://www.bilibili.com/video/BV1SzbFe7EGZ 项目讲解视频:https://www.bilibili.com/video/BV1Tb421n72S 二次开发教程:https://www.bilibili.com/video/BV18i421i7Dx
免费JAVA毕业设计 2024成品源码+论文+数据库+启动教程 启动教程:https://www.bilibili.com/video/BV1SzbFe7EGZ 项目讲解视频:https://www.bilibili.com/video/BV1Tb421n72S 二次开发教程:https://www.bilibili.com/video/BV18i421i7Dx
免费JAVA毕业设计 2024成品源码+论文+数据库+启动教程 启动教程:https://www.bilibili.com/video/BV1SzbFe7EGZ 项目讲解视频:https://www.bilibili.com/video/BV1Tb421n72S 二次开发教程:https://www.bilibili.com/video/BV18i421i7Dx