{"id":1710,"date":"2022-06-07T16:18:10","date_gmt":"2022-06-07T08:18:10","guid":{"rendered":"https:\/\/104.es\/?p=1710"},"modified":"2022-06-07T16:18:10","modified_gmt":"2022-06-07T08:18:10","slug":"unity-vuforia-virtual-button","status":"publish","type":"post","link":"https:\/\/104.es\/index.php\/2022\/06\/07\/unity-vuforia-virtual-button\/","title":{"rendered":"Unity Vuforia \u865b\u64ec\u6309\u9215\u7684\u4f7f\u7528"},"content":{"rendered":"\n<p>\u4f7f\u7528Viforia\u5075\u6e2c\u5230\u76ee\u6a19\u4e4b\u5f8c\uff0c\u7a0b\u5f0f\u81ea\u52d5\u6703\u986f\u793a\u6211\u5011\u4e4b\u524d\u6e96\u5099\u597d\u7684\u52d5\u756b\u3002\u6b64\u6642\u8981\u548c\u7522\u751f\u51fa\u4f86\u7684\u52d5\u756b\u7269\u4ef6\u9032\u884c\u4e92\u52d5\u9664\u4e86\u4f7f\u7528\u624b\u6a5f\u4e0a\u7684UI\u4ecb\u9762\u4e4b\u5916\uff0c\u4e5f\u53ef\u4ee5\u900f\u904e\u865b\u64ec\u6309\u9215VirtualButton\u4f86\u9054\u6210\uff0c\u9019\u7bc7\u6587\u7ae0\u5c07\u8aaa\u660e\u6240\u9700\u8981\u4f7f\u7528\u7684\u7a0b\u5f0f\u3002<\/p>\n\n\n\n<p>\u9996\u5148\uff0c\u8981\u5728ImageTarget\u7269\u4ef6\u4e2d\uff0c\u4f7f\u7528Image Target Behaviour(Script)\u4e2d\u7684Advanced\u9801\u7c64\u88e1\u9762\u52a0\u5165\u865b\u64ec\u6309\u9215\uff0c\u5982\u4e0b\u6240\u793a\uff1a<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"498\" height=\"315\" src=\"http:\/\/104es.nkust.org\/wp-content\/uploads\/2022\/06\/image-21.png?w=498\" alt=\"\" class=\"wp-image-1714\" srcset=\"https:\/\/104.es\/wp-content\/uploads\/2022\/06\/image-21.png 498w, https:\/\/104.es\/wp-content\/uploads\/2022\/06\/image-21-300x190.png 300w\" sizes=\"auto, (max-width: 498px) 100vw, 498px\" \/><\/figure>\n\n\n\n<p>\u63a5\u8457\uff0c\u540c\u6a23\u4e5f\u662f\u5728ImageTaget\u7269\u4ef6\u4e2d\uff0c\u52a0\u5165\u4e00\u500b\u65b0\u7684Script\uff0c\u5728\u9019\u88e1\u6211\u5011\u628a\u5b83\u53eb\u505aVBtnController\uff0c\u5b83\u7684\u5167\u5bb9\u5982\u4e0b\u6240\u793a\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>using System.Collections;\nusing System.Collections.Generic;\nusing UnityEngine;\nusing Vuforia;\n\npublic class vBtnController : MonoBehaviour\n{\n    public GameObject cube;\n    public VirtualButtonBehaviour vb;\n    public float speed = 100f;\n    public bool Rotation = false;\n\n    void Start()\n    {\n        VirtualButtonBehaviour&#091;] vbs = GetComponentsInChildren&lt;VirtualButtonBehaviour&gt;();\n        for (int i=0; i&lt;vbs.Length; i++)\n        {\n            vbs&#091;i].RegisterOnButtonPressed(OnButtonPressed);\n            vbs&#091;i].RegisterOnButtonReleased(OnButtonReleased);\n        }\n    }\n\n    public void OnButtonPressed(VirtualButtonBehaviour vb)\n    {\n        if (Rotation)\n            Rotation = false;\n        else\n            Rotation = true;\n    }\n\n    public void OnButtonReleased(VirtualButtonBehaviour vb)\n    {\n        Debug.Log(\"Released\");\n    }\n    \n    void Update()\n    {\n        if (Rotation)\n        {\n            cube.transform.Rotate(0, speed * Time.deltaTime, 0);\n        }\n        \n    }\n}<\/code><\/pre>\n\n\n\n<p>\u5728\u9019\u500b\u4f8b\u4e2d\u6211\u5011\u7684\u865b\u64ec\u6309\u9215\u4e3b\u8981\u63a7\u5236\u7684\u5c0d\u8c61\u662f\u4e00\u500b\u6b63\u7acb\u65b9\u9ad4\uff08Cube\uff09\uff0c\u7528\u4f86\u63a7\u5236\u5b83\u662f\u5426\u9700\u8981\u65cb\u8f49\u3002\u5728\u9019\u88e1\u9762\u4f7f\u7528\u4e86\u5e7e\u500bpublic\u516c\u7528\u7684\u5c6c\u6027\uff0c\u5728\u7a0b\u5f0f\u5b8c\u6210\u4e4b\u5f8c\uff0c\u6703\u5728\u9762\u677f\u4e2d\u770b\u5230\uff0c\u8acb\u5206\u5225\u628a\u5c0d\u8c61\u7684\u7269\u4ef6\u62d6\u66f3\u9032\u5165\uff1a<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"498\" height=\"138\" src=\"http:\/\/104es.nkust.org\/wp-content\/uploads\/2022\/06\/image-22.png?w=498\" alt=\"\" class=\"wp-image-1717\" srcset=\"https:\/\/104.es\/wp-content\/uploads\/2022\/06\/image-22.png 498w, https:\/\/104.es\/wp-content\/uploads\/2022\/06\/image-22-300x83.png 300w\" sizes=\"auto, (max-width: 498px) 100vw, 498px\" \/><\/figure>\n\n\n\n<p>\u4e4b\u5f8c\u7576\u7a0b\u5f0f\u958b\u4f7f\u904b\u4f5c\u6642\uff0c\u6211\u5011\u5c31\u53ef\u4ee5\u5728\u6309\u4e0b\u865b\u64ec\u6309\u9215\u6642\uff0c\u5207\u63dbRotation\u9019\u500b\u8b8a\u6578\uff0c\u4e5f\u5c31\u662f\u53ef\u4ee5\u63a7\u5236Cube\u9019\u500b\u7269\u4ef6\u7684\u65cb\u8f49\u72c0\u614b\u4e86\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u4f7f\u7528Viforia\u5075\u6e2c\u5230\u76ee\u6a19\u4e4b\u5f8c\uff0c\u7a0b\u5f0f\u81ea\u52d5\u6703\u986f\u793a\u6211\u5011\u4e4b\u524d\u6e96\u5099\u597d\u7684\u52d5\u756b\u3002\u6b64\u6642\u8981\u548c\u7522\u751f\u51fa\u4f86\u7684\u52d5\u756b\u7269\u4ef6\u9032\u884c\u4e92\u52d5\u9664\u4e86\u4f7f\u7528\u624b\u6a5f\u4e0a\u7684UI\u4ecb\u9762\u4e4b\u5916\uff0c\u4e5f\u53ef\u4ee5\u900f\u904e\u865b\u64ec\u6309\u9215VirtualButton\u4f86\u9054\u6210\uff0c\u9019\u7bc7\u6587\u7ae0\u5c07\u8aaa\u660e\u6240\u9700\u8981\u4f7f\u7528\u7684\u7a0b\u5f0f\u3002<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[18],"tags":[23,69],"class_list":["post-1710","post","type-post","status-publish","format-standard","hentry","category-unity","tag-ar","tag-vuforia"],"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/104.es\/index.php\/wp-json\/wp\/v2\/posts\/1710","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/104.es\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/104.es\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/104.es\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/104.es\/index.php\/wp-json\/wp\/v2\/comments?post=1710"}],"version-history":[{"count":0,"href":"https:\/\/104.es\/index.php\/wp-json\/wp\/v2\/posts\/1710\/revisions"}],"wp:attachment":[{"href":"https:\/\/104.es\/index.php\/wp-json\/wp\/v2\/media?parent=1710"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/104.es\/index.php\/wp-json\/wp\/v2\/categories?post=1710"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/104.es\/index.php\/wp-json\/wp\/v2\/tags?post=1710"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}