【VR】Leap Motion 官网文档 MagneticPinch (磁性捏取)

前言

至此LeapMotion的Unity主体部分的翻译全部结束,同时本篇也是搭档的第十篇博客。

为了纪念这里程碑式的时刻,现将微信二维码头像换成合照 *^-^*

原译文链接:http://blog.csdn.net/qq_18408937/article/details/47452343

磁性捏取类是为了应对体感输入的一种有效方式,为了增强用户体验,让操作更容易比让操作更拟真往往更重要。

MagneticPinch 磁性捏取

Attach this script to a RigidHand object to enable grabbing moveable Unity objects by pinching. The script uses a simple distance check and pulls the object to the hand (rather than simulating the physics of picking up an object by contact).
You can specify the range and the strength of the force that moves the object to the hand.

将这个脚本添加到骨骼绑定的手对象上使其能够抓住Unity对象并移动。脚本用一个简单的距离检测并用手拖拽对象(而不是物理模拟通过接触来拾取一个对象)。你可以指定范围和力度以便将对象移到手上。

class MagneticPinch 磁性捏取类

Detects pinches and grabs the closest rigidbody if it’s within a given range.

Attach this script to the physics hand object assinged to the HandController in
a scene.

检测给定范围内最近的刚体对其进行捏取和抓取。

将这个脚本添加到场景中手部控制器的物理手对象上。

Public Members 公共变量

float forceSpringConstant   float 弹性力常量

The stiffness of the spring force used to move the object toward the hand.

用于移动对象到手部的弹性力的强度。

float magnetDistance   float 吸取距离

The maximum range at which an object can be picked up.

对象能够被拾取的最大范围。

————————————————————————————————————————————

更多参考:

【VR】Leap Motion 官网文档 脚本参考(目录)

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

时间: 2024-11-08 20:55:54

【VR】Leap Motion 官网文档 MagneticPinch (磁性捏取)的相关文章

【VR】Leap Motion 官网文档 脚本参考(目录)

前言: 本系列译文是为迎合Unity VR的热潮与大家的学习需要,推出的针对Unity方向的Leap Motion官方文档中英对照翻译. 本篇第四篇 <脚本参考> 以目录链接的形式列出了Leap Motion为Unity提供的核心资源包中所包含的脚本定义的类. 关于每个类的详细内容后续献上,敬请期待. 英文原文网址:https://developer.leapmotion.com/documentation/unity/unity/Unity_Classes.html 译文首发&持续更

【VR】Leap Motion 官网文档 HandModel(手部模型)

前言: 本系列译文是为迎合Unity VR的热潮与大家的学习需要,推出的针对Unity方向的Leap Motion官方文档中英对照翻译. 本篇为第六篇 <HandModel(手部模型)> ,该类主要用于连接控制器和手部模型,以及处理手臂.肘部.手掌.手指的位置和角度等信息. Handmodel is the base class for all the other hand scripts. If you are creating your own hands and need a custo

【VR】Leap Motion 官网文档 FingerModel (手指模型)

前言: 感谢关注和支持这个Leap Motion系列翻译的朋友们,很抱歉由于工作原因很久没有更新,今后这个翻译还会继续(除非官方直接给出中文文档).本篇献给大家的是 <FingerModel (手指模型)> ,该类主要用于手指模型的创建.更新.信息获取及控制等. FingerModel?  手指模型类 FingerModel is the base class for all the other finger scripts. If you are creating your own fing

【VR】Leap Motion 官网文档 HandController(手部控制器)

前言: 本系列译文是为迎合Unity VR的热潮与大家的学习需要,推出的针对Unity方向的Leap Motion官方文档中英对照翻译. 本篇第五篇 <HandController(手部控制器)> 介绍了HandController(手部控制器)预设体与HandController脚本组件使用,以及HandController类中定义的各个公共属性与方法. HandController  手部控制器 The HandController script is attached to the Ha

【VR】Leap Motion 官网文档 Unity插件概述

前言: Leap Motion的官网文档已经有不少的热心网友参与了翻译,但没有覆盖官网文档的全部. 为迎合Unity VR的热潮与大家的学习需要,本博客将推出针对Unity方向的官方文档翻译系列. 本篇主要对Leap Motion的Unity插件及坐标系系统进行简述. 英文原文网址:https://developer.leapmotion.com/documentation/unity/unity/Unity_Overview.html 译文首发&持续更新:http://blog.csdn.ne

【VR】Leap Motion 官网文档 DisconnectionNotice (未连接通知)

前言 不能不说~  新搭档真心给力!翻译的节奏很嗨.这两篇本人也简单参与了审校,姑且算是合作的吧. VR热逐渐趋于理智,但软件对VR硬设的探索和发挥依然停留在初始阶段.相对而言,一些VR硬设文档缺乏中文文档,为广大开发者的学习带来阻碍和不便.本系列译文就是在这样的背景下诞生的,而首先推出的是价位上人手可及的 Leap Motion系列. Leap Motion 的 DisconnectionNotice类会在没有连接时以视觉形式反馈给用户,以便让重新连接. 原译文链接:http://blog.c

【VR】Leap Motion 官网文档 ToolModel (工具模型)

前言 非常开心的是,Leap Motion官方文档的翻译工作有了新的伙伴加入,特此转发过来. 原译文链接:http://blog.csdn.net/qq_18408937/article/details/47373879 ToolModel  工具模型 ToolModel updates a model's position and orientation based on a tracked tool. Compared to hands, tools are very simple and

【VR】Leap Motion 官网文档 ConfidenceTransparency (确定性透明处理)

前言 由于新搭档的加入,翻译的工作进展快了许多. 本篇是Unity引擎中Leap Motion工具模型类中关于透明处理的类,希望对大家有帮助. 原译文链接:http://blog.csdn.net/qq_18408937/article/details/47382423 ConfidenceTransparency   确定性透明处理 Sets a hand's opacity based on its current confidence rating. 基于手部的当前确定性来设置它的透明度.

【VR】Leap Motion 官网文档 LeapUnityExtensions (LeapUnity扩展)

前言 Leap Motion Unity部分的API进入最后冲刺阶段,不算派生的小类,本篇是倒数第二篇. 不得不忠谢这合作的力量. 原译文链接:http://blog.csdn.net/qq_18408937/article/details/47452299 LeapUnityExtensions类提供了从Unity坐标系到Leap坐标系的各种转换功能. LeapUnityExtensions LeapUnity扩展 class Leap:UnityVectorExtension  Leap类(