位置: 编程技术 - 正文

【VR】Leap Motion 官网文档 手型资源(#vr#)

编辑:rootadmin
前言:

推荐整理分享【VR】Leap Motion 官网文档 手型资源(#vr#),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:vr the,vr website,vr creation,vrbrations,vr-very rare,vr project,vr the,#vr#,内容如对您有帮助,希望把文章链接给更多的朋友!

Leap Motion的官网文档已经有不少的热心网友参与了翻译,但没有覆盖官网文档的全部。

为迎合Unity VR的热潮与大家的学习需要,推出的针对Unity方向的官方文档翻译系列。

第三篇 《手型资源》 介绍了Leap Motion为Unity提供的资源包种的手型预设体资源。

英文原文网址: Assets 手型资源

The Leap Motion core assets for Unity include a number of pre-made hand prefabs assets. You can use these prefabs as-is, modify them, or create your own.

Leap Motion 为Unity提供的核心资源包含一系列实现做好的手型预设体资源。你可以直接使用这些预设,或者对其进行修改,也可以创建自己的手型预设体。

There are a few different approaches to creating hands, including creating discrete components for the parts of the hands and moving these parts individually, creating mesh hands rigged with bone armatures and deforming the mesh by rotating the bones, and even creating code-driven hands that procedurally create their own graphics. The existing prefabs use all three of these approaches.

创建手型的方式有多种,你可以分别创建手型的各个部分并分别移动,也可以创建有骨骼绑定的手型网&#;通过旋转骨骼控制手部移动,甚至可以创建代码驱动的手型由计算机渲染出其图形。资源包中提供的预设体包含了以上三种创建方式。

The HandController class orchestrates the acquisition and application of tracking data to the hands and fingers. The HandModel and FingerModel classes serves as the base for animating the hand and fingers. There are several classes extending HandModel and FingerModel to implement the specific types of animation. These specific classes, like SkeletalHand/Finger and RiggedHand/Finger, can be used for multiple hand designs as long as the objects to which they are attached follow the same basic structure.

HandController类用于组织手部和手指追踪数据的获取和应用。HandModel类 和 FingerModel类是手部和手指动画的基础模型类。HandModel类和FingerModel类在均有一些派生类,用于特定动画类型。这些特殊的类,比如SkeletalHand/Finger(骨骼手/手指),可以用于多种手型和其他具有相同基础结构的物体设计。

The graphics and physics hands are separated into two different prefabs. You can use whichever physics hand prefab best fits your hand graphics model. For example. RigidFullHand includes a rigid body and collider for the arm, so you can use it with graphics models that include an arm – when you want the arm to collide with other objects in the scene.

(译者注:以下表&#;是资源包中的名字,应按英文名查找,中文译文仅供语义参考)

Hand Type 手型类型Prefabs 预设体Scripts 对应脚本Example 图例【VR】Leap Motion 官网文档 手型资源(#vr#)

Procedural Hands

程序生成手型

PolyHand1/2/3, DebugHand

多边形手1/2/3, 调试手

PolyHand/Finger, DebugHand/FingerComponent Hands组件构成手型

MinimalHand, CleanRobotHand, GlowRobotHand

最小手,普通机器手,光晕机器手

SkeletalHand/FingerRigged Hands骨骼驱动手型All the human models所有的人类模型RiggedHand/FingerPhysics Hands物理手型

RigidHand, RigidFullHand, RigidRoundHand, ThickRigidHand

刚体手,刚体完整手,刚体旋绕手,厚的刚体手

RigidHand/FingerSetting Up Hand Assets in the Hand Controller 在Hand Controller中设置手资源

After adding a HandController to a scene, you can set the graphics model by dragging the desired hand prefab to the Hand Graphics Model slots.

向场景中添加HandController之后,你可以拖拽想使用的手型预设体到组件的Hand Graphics Model属性槽当中,用于显示不同的图像模型。

If the Separate Left/Right setting is checked, you can use different prefabs for the right and left hands. Otherwise, the HandController mirrors a single model for both hands. The existing hand prefabs are all labeled “right” or “left” where it makes a difference (if you use the wrong hand model, the error will be obvious).

如果勾选了脚本组件中的 Separate Left/Right 选项,那么你就可以对左右手分别使用不同的预设体了。否则HandController会从一个模型映射出两个手型。资源包种的预设体均标明了左右以示区分(如果添加错误,会出现奇怪的结果)

Change the size of the hands using the HandController Scale value. A scale of 1.0 is life-size, but that is often too small. It really depends on your scene. The edges of the default Unity cube, for example, are 1 meter long and would dwarf a life-size hand. Scaling the hands larger also increases their range of motion. You can further increase the range of motion without making the hands larger by increasing the HandController Hand Movement Scale values.

你可以通过修改HangController 的Scale 属性&#;来改变手型的大小。当scale&#;为1时表示实际大小,但是通常看上去会很小。这取决于你的场景。例如Unity中的Cube默认的边缘长度是1米,相比之下实际大小的手型会显得很小。缩放手型同样也会缩放运动范围。你也可以通过增加HandController Hand Movement Scale 的&#;只能加运动的范围而不让手型变大。

Setting the Is Head Mounted will provide a hint to the Leap Motion service that hands are viewed from the head-mounted position and improve hand recognition. The setting does not automatically rotate the hands in the game to appear in front of the HandController rather than above it. To do that, you can set the HandController rotation values to {x=, y=, z=0}.

勾选Is Head Mounted可以将Leap Motion 服务设置为头戴模式。这个设定不会在游戏中自动旋转HandController前的手型。为使其发生旋转,你可以设置HandController 的 rotation&#;为 {x=, y=, z=0}。

(版权声明:本篇为Leap Motion 官网文档译文,版权归Leap Motion 官网所有,图文内容仅供学习使用。)

[置顶] 【VR】Leap Motion 官网文档 脚本参考(目录) 前言:本系列译文是为迎合UnityVR的热潮与大家的学习需要,推出的针对Unity方向的LeapMotion官方文档中英对照翻译。本篇第四篇《脚本参考》以目录链接

Unity4.6.3之间隔、延时调用方法 在cocos2dx中通过调用scheduleUpdate()方法并指定调用间隔时间即可实现方法的间隔、延时调用,而在unity中,有多种方法可提供此功能,在网上搜到这篇

Unity destructor Or OnDestory In%ofallcasesyoudon'twanttouseadestructor(finalizer)atall:

标签: #vr#

本文链接地址:https://www.jiuchutong.com/biancheng/382486.html 转载请保留说明!

上一篇:Unity之手机重力感应(unity给物体添加重力)

下一篇:[置顶] 【VR】Leap Motion 官网文档 脚本参考(目录)(置顶是什么意思呢)

  • 确认递延所得税资产会计处理
  • 所得税退税账务处理
  • 土地增值税与增值税
  • 增值税影响利润总额吗
  • 个体经营部可以开增值税专用发票吗
  • 总承包单位可以分包吗
  • 电子发票打小了可以报销吗
  • 暂估入库可以跨年吗
  • 调整企业银行存款账面余额的记账依据是什么
  • 企业的现金流量表反映的是什么
  • 养老失业工伤单位一般缴纳多少钱
  • 营改增结束了吗
  • 研发支出费用化支出每个月都要结转吗
  • 生产企业电梯维修方案
  • 个人独资企业税率表2023最新
  • 核定征收所得税税率
  • 不计提税费可以吗
  • 代扣代缴的增值税可以作为进项税抵扣吗
  • 一般纳税人申请流程
  • 增值税发票不小心撕坏了怎么办
  • 一般纳税人年审证明
  • 刻章发票可以抵税吗
  • 简并税率后,申报增值税要注意哪几点?
  • 2017年消费税税率
  • 小微 小型微利
  • 小规模增值税未开票收入填哪里
  • 商品税目是什么意思4001
  • 补贴收入是否缴税
  • 1697510816
  • win11怎么取消登录pin密码
  • 王者荣耀中牛魔王的技能
  • 租赁合同维修义务谁承担
  • macos怎么看
  • 股权转让协议解除返还股权优先权
  • 调整之前的凭证怎么删除
  • 计提存货减值准备符合可靠性原则
  • 销售合同怎么计算印花税
  • isass是什么程序
  • 分公司收到总公司利润分录怎么写
  • 涉税服务实务重点总结
  • 扣缴义务人需要办理税务登记吗
  • c#openxml
  • php处理xml
  • 暂估增值税可以抵扣吗
  • 对公收费明细入账计入什么科目
  • 一般贸易和进料加工退税的区别
  • 收到的赔款,罚款怎么算
  • 电子发票如何作废,具体怎么操作
  • 营业成本包含哪些项目
  • 现金流量表编制原则
  • 1000元的打印机双十一满减可以减150吗少
  • 防暑降温费计入工资还是福利费
  • 经营费用属于什么类科目
  • 增值税进项用不完怎么办
  • 防疫物资采购会计处理
  • 应收账款是否算负债
  • 其他应收款的认定
  • 长期股权投资的成本法和权益法区别
  • fedora29
  • mac电脑连wifi总是断开
  • 修改注册表显示隐藏文件
  • assoc.exe
  • 快速解决儿童鼻塞
  • svcinit.exe - svcinit是什么进程
  • Windows tips小技巧
  • win8.1卸载软件在哪里
  • jquery示例
  • android adapter
  • 广告文章叫什么
  • perl语句
  • nodejs查找文件
  • Eclipse运行快捷键
  • 表单失去焦点事件
  • javascript定律
  • js canvas绘制图片
  • 重庆税务登记证在哪里办理
  • 三星电视投屏显示不支持当前文件
  • 地税怎么查个人所得税
  • 出租房地面铺什么
  • 山东国税局官网登录
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设