Aukiネットワークとトークンエコノミーの基礎を学ぼう
Aukiネットワークで稼働する、独自ドメインを取得しよう
Aukiネットワークのホワイトペーパーの詳細をご覧ください。
Uniswap(DEX)で$AUKIを取引する
MEXC(CEX)で$AUKIを取引する
Aerodrome(DEX)で$AUKIを取引する
Aukiネットワークのネットワーク状況をライブで追跡する
See how the Auki network is empowering robot fleets.
See how the Auki network is enabling AI.
See how the Auki network is enabling XR experiences.
ConjureKitを使って、第一世代のソーシャル拡張現実体験を構築しましょう
Aukiトークンで最大10万ドルの開発者助成金を申請する
当社のSDKを使用して、ポーズメッシュ上でアプリケーションを構築する方法を学びましょう。
すべてのConjureKit SDKドキュメントとサポート
Cactus(カクタス)がどのように小売業の効率を改善できるかをご覧ください。
Gotu(ゴートゥ)がプロパティ管理者にどのように役立つかをご覧ください。
Gotuナビゲーションがどのようにイベントを盛り上げるかをご覧ください。
小売業のための空間AIプラットフォーム
イベントやプロパティ管理用の屋内ナビゲーション
ホームデコ&展示装飾アプリケーション
このローカルマルチプレイヤー共同AR体験で勝利を目指そう
Aukiと共に誰がポーズメッシュを構築をしているかご覧ください
私たちの哲学を深く知ってみてください
ディスコードで会話に参加しませんか
XでAukiコミュニティの最新情報をチェック
Stay up to date with the Auki community on X.
Aukiとポーズメッシュに関するよくある質問
プレスリリース、メディアキット、連絡先等
All of the code for the project can be found below or on GitHub.
using UnityEngine; using Auki.ConjureKit; using UnityEngine.UI; using Auki.ConjureKit.Manna; using Auki.Ur; using Auki.Util; using UnityEngine.XR.ARFoundation; using UnityEngine.XR.ARSubsystems; public class ConjureKitManager : MonoBehaviour { [SerializeField] private Camera arCamera; [SerializeField] private ARSession arSession; [SerializeField] private ARRaycastManager arRaycastManager; [SerializeField] private Text sessionState; [SerializeField] private Text sessionID; [SerializeField] private GameObject cube; [SerializeField] private Button spawnButton; [SerializeField] Button qrCodeButton; private bool qrCodeBool; private IConjureKit _conjureKit; private Manna _manna; private ARCameraManager arCameraManager; private Texture2D _videoTexture; [SerializeField] private Renderer fingertipLandmark; private HandTracker _handTracker; private bool landmarksVisualizeBool = true; [SerializeField] private AROcclusionManager arOcclusionManager; private bool occlusionBool = true; void Start() { arCameraManager = arCamera.GetComponent<ARCameraManager>(); _conjureKit = new ConjureKit( arCamera.transform, "YOUR_APP_KEY", "YOUR_APP_SECRET"); _manna = new Manna(_conjureKit); _conjureKit.OnStateChanged += state => { if (state == State.JoinedSession) { Debug.Log("State.JoinedSession " + Time.realtimeSinceStartup); } if (state == State.Calibrated) { Debug.Log("State.Calibrated " + Time.realtimeSinceStartup); } sessionState.text = state.ToString(); ToggleControlsState(state == State.Calibrated); }; _conjureKit.OnJoined += session => { Debug.Log("OnJoined " + Time.realtimeSinceStartup); sessionID.text = session.Id.ToString(); }; _conjureKit.OnLeft += session => { sessionID.text = ""; }; _conjureKit.OnEntityAdded += CreateCube; _conjureKit.Connect(); _handTracker = HandTracker.GetInstance(); _handTracker.SetARSystem(arSession, arCamera, arRaycastManager); _handTracker.OnUpdate += (landmarks, translations, isRightHand, score) => { if (score[0] > 0) { var handPosition = new Vector3( translations[0], translations[1], translations[2]); var pointerLandmarkIndex = 8 * 3; // Index fingertip var pointerLandMarkPosition = new Vector3( landmarks[pointerLandmarkIndex + 0], landmarks[pointerLandmarkIndex + 1], landmarks[pointerLandmarkIndex + 2]); fingertipLandmark.enabled = true; fingertipLandmark.transform.localPosition = handPosition + pointerLandMarkPosition; } else { fingertipLandmark.enabled = false; } }; _handTracker.Start(); _handTracker.ShowHandMesh(); } private void Update() { FeedMannaWithVideoFrames(); _handTracker.Update(); } private void FeedMannaWithVideoFrames() { var imageAcquired = arCameraManager.TryAcquireLatestCpuImage(out var cpuImage); if (!imageAcquired) { AukiDebug.LogInfo("Couldn't acquire CPU image"); return; } if (_videoTexture == null) _videoTexture = new Texture2D(cpuImage.width, cpuImage.height, TextureFormat.R8, false); var conversionParams = new XRCpuImage.ConversionParams(cpuImage, TextureFormat.R8); cpuImage.ConvertAsync( conversionParams, (status, @params, buffer) => { _videoTexture.SetPixelData(buffer, 0, 0); _videoTexture.Apply(); cpuImage.Dispose(); _manna.ProcessVideoFrameTexture( _videoTexture, arCamera.projectionMatrix, arCamera.worldToCameraMatrix ); } ); } private void ToggleControlsState(bool interactable) { if (spawnButton) spawnButton.interactable = interactable; if (qrCodeButton) qrCodeButton.interactable = interactable; } public void ToggleLighthouse() { qrCodeBool = !qrCodeBool; _manna.SetLighthouseVisible(qrCodeBool); } public void ToggleHandLandmarks() { landmarksVisualizeBool = !landmarksVisualizeBool; if (landmarksVisualizeBool) { _handTracker.ShowHandMesh(); } else { _handTracker.HideHandMesh(); } } public void ToggleOcclusion() { occlusionBool = !occlusionBool; arOcclusionManager.requestedHumanDepthMode = occlusionBool ? HumanSegmentationDepthMode.Fastest : HumanSegmentationDepthMode.Disabled; arOcclusionManager.requestedHumanStencilMode = occlusionBool ? HumanSegmentationStencilMode.Fastest : HumanSegmentationStencilMode.Disabled; arOcclusionManager.requestedEnvironmentDepthMode = occlusionBool ? EnvironmentDepthMode.Fastest : EnvironmentDepthMode.Disabled; } public void CreateCubeEntity() { if (_conjureKit.GetState() != State.Calibrated) return; Vector3 position = arCamera.transform.position + arCamera.transform.forward * 0.5f; Quaternion rotation = Quaternion.Euler(0, arCamera.transform.eulerAngles.y, 0); Pose entityPos = new Pose(position, rotation); _conjureKit.GetSession().AddEntity( entityPos, onComplete: entity => CreateCube(entity), onError: error => Debug.Log(error)); } private void CreateCube(Entity entity) { if (entity.Flag == EntityFlag.EntityFlagParticipantEntity) return; var pose = _conjureKit.GetSession().GetEntityPose(entity); Instantiate(cube, pose.position, pose.rotation); } }
The full code for this tutorial can be found on GitHub on the ^tutorial/handtracker^ branch.
tutorial/handtracker^
The complete project with all parts and the latest packages is on the master branch of the same repo.
プロジェクトをスタートさせるためにAUKIトークンの助成金を申請し、Auki Labsチームと直接連携して、あなたのクリエイションをマーケットへ。選ばれた申請者は最大10万米ドル相当のAUKIトークンの助成を受け、アウキラボチームによる開発、マーケティング支援を受けることができます。