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とポーズメッシュに関するよくある質問
プレスリリース、メディアキット、連絡先等
In this chapter, we'll cover how to add and initialize ConjureKit to a new Unity project.
start-warning
We suggest to check which ARFoundation and ARKit/ARCore package versions are installed by Package Manager, as they might not be equal. This is not automatically handled when installing a "Preview" version and mismatch can happen.
end-warning
start-note
ARFoundation versions below 4.2.6 do not support iOS 16.
ARFoundation
end-note
AR Session Origin
ARTrackedImageManager
ReferenceImageLibrary
AR Session
1. Install the ConjureKit package.
2. Create a new ^MonoBehaviour^ script and attach it to an empty game object in the scene.
MonoBehaviour^
3. Import ^ConjureKit^.
ConjureKit^
using Auki.Ur;
4. Create a private ^IConjureKit^.
IConjureKit^.
private IConjureKit _conjureKit;
5. Create a public ^Camera^ variable.
Camera^
public Camera arCamera;
6. Drag the AR Camera to the ^arCamera^ field on the GameObject you created;
AR Camera
arCamera^
7. Initialize ^ConjureKit^ with the app key and secret from the posemesh console (cf. the Quickstart guide)
Never share your app secret with anyone.
8. Call ^_conjureKit.Connect()^ to connect to a Relay server with the lowest latency and create a session.
_conjureKit.Connect()^
using Auki.ConjureKit; public class ConjureKitDemo : MonoBehaviour { public Camera arCamera; private IConjureKit _conjureKit; private void Start() { _conjureKit = new ConjureKit( arCamera.transform, "YOUR_APP_KEY", "YOUR_APP_SECRET"); _conjureKit.Connect(); } }
9. Declare two new ^Text^ fields to display the session ID and session state on screen.
Text^
[SerializeField] private Text sessionState; [SerializeField] private Text sessionID;
10. Register a callback to the ^_conjureKit.OnStateChanged^ event that fires every time our session state changes.
_conjureKit.OnStateChanged^
_conjureKit.OnStateChanged += state => { sessionState.text = state.ToString(); };
11. Register callback to ^_conjureKit.OnJoined^ and ^_conjureKit.OnLeft^ which are triggered when we join and leave a session.
_conjureKit.OnJoined^
_conjureKit.OnLeft^
_conjureKit.OnJoined += session => { sessionID.text = session.Id; }; _conjureKit.OnLeft += session => { sessionID.text = ""; };
12. Create two ^Text^ elements and drag and drop them to the fields you declared in step 8.
13. Click Play in Unity Editor. Now you'll see the state of your connection logged in the console and session id and state on the screen.
プロジェクトをスタートさせるためにAUKIトークンの助成金を申請し、Auki Labsチームと直接連携して、あなたのクリエイションをマーケットへ。選ばれた申請者は最大10万米ドル相当のAUKIトークンの助成を受け、アウキラボチームによる開発、マーケティング支援を受けることができます。