Avatar System/ja: Difference between revisions

From Resonite Wiki
Created page with "アバターについて(アバターシステム)"
 
Created page with "また、システム内で任意のオブジェクトから簡単に新しいアバターを作成できるコンポーネントのセットも付属しています。これによりResoniteのツールを使用してインポート済みのモデル、ペンやツールで書いたもの、形から新しいアバターを作成したり、ProtoFluxを使用し、動作を追加したりできます。"
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>


<div lang="en" dir="ltr" class="mw-content-ltr">
[[Special:MyLanguage/Resonite | Resonite]] by itself doesn't have a concept of a user avatar and its associated behaviors, however it comes with a set of [[:Category:Components|components]] that provide a conventional (but highly flexible) avatar system that will cover most situations. However as with anything else in Resonite, you can build entirely your own to suit your needs or omit it completely, if you don't need avatars at all.
[[Special:MyLanguage/Resonite | Resonite]] by itself doesn't have a concept of a user avatar and its associated behaviors, however it comes with a set of [[:Category:Components|components]] that provide a conventional (but highly flexible) avatar system that will cover most situations. However as with anything else in Resonite, you can build entirely your own to suit your needs or omit it completely, if you don't need avatars at all.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
[[Special:MyLanguage/Resonite | Resonite]] 自体には、ユーザーアバターとそれに関連する行動の概念はありませんが、[[:Category:Components|コンポーネント]] の組み合わせ次第で、結果として慣例的な(ただし、複雑に組み合わせができる)アバターシステムをカバーしたものを提供している。しかし、Resoniteでよくあるように、自分のニーズに合わせて完全に独自のものを作ることもできますし、アバターが全く必要ない場合は完全に省略することもできます。
This page describes the ideas and concepts behind building avatar systems for Resonite and how the various behaviors (such as voice and movement) are handled.
 
</div>
このページでは、Resoniteのアバターシステム構築の背景にあるアイデアとコンセプト、およびさまざまな動作 (音声や動きなど) の処理方法について説明します。


<div lang="en" dir="ltr" class="mw-content-ltr">
<span id="Basic_concepts"></span>
== Basic concepts ==
== 基本概念 ==  
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
Resoniteにあるすべての[[Special:MyLanguage/World|ワールド]]は、コンポーネントが付いたオブジェクト[[Special:MyLanguage/Slot|スロット]]の階層から構成されます。すべてのアバターシステムはこの同じ階層の一部であり、ユーザーのアバターとシーン内の他のオブジェクトとの間に明確な区別はありません。これがシステムに大きな柔軟性を与えている所以です。
All [[Special:MyLanguage/World | worlds]] in Resonite are composed from a hierarchy of objects ([[Special:MyLanguage/Slot|slots]]) with components attached to them. Any avatar system is part of this same hierarchy, with no solid distinction between the user's avatar and other objects in the scene. This is what gives the system its great flexibility.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
Resoniteのワールドには、[[Special:MyLanguage/ProtoFlux:User Joined|User Joined]][[Special:MyLanguage/ProtoFlux:User Left|User Left]]が用意されています。これらのイベントは、新しい[[特別:MyLanguage/User|ユーザー]][[Special:MyLanguage/Session|セッション]]に入退出するたびに[[Special:MyLanguage/Impulses|呼び出されます]]。これには、セッションの開始時に暗黙的に参加するローカルユーザーも含まれます。セッションに参加しているユーザーは、それ自体に対して何も行いません。アバターも声も操作形態もありません。参加したユーザーは、その時点ではワールドと対話する方法がありません。
Resonite World's provide a [[Special:MyLanguage/ProtoFlux:User Joined|User Joined]] and [[Special:MyLanguage/ProtoFlux:User Left|User Left]] events, which are [[Special:MyLanguage/Impulses|called]] whenever a new [[Special:MyLanguage/User|user]] joins or leaves the [[Special:MyLanguage/Session|session]], including the local user (who joins implicitly on starting the session). User joining a session doesn't do anything on itself. There is no avatar spawned, no voice, no controls. The joined user has no way to interact with the world.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
<div lang="en" dir="ltr" class="mw-content-ltr">
Line 29: Line 22:
</div>
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
<span id="Common_Avatar_System"></span>
== Common Avatar System ==
== 一般的なアバターシステム(コモンアバターシステム) ==  
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
アバターはほとんどのアプリケーションにとって重要なものです。そのためResoniteには「Common Avatar System」、または「Common Avatar」と呼ばれる強力なアバターサブシステムが付属しています。このシステムはツールで[[Special:MyLanguage/Avatar|典型的なアバター]]を自動的に構築し、ユーザの現在設定しているアバターをクラウドから読み込む処理を行います。
Because avatars are crucial for most applications, Resonite comes with a powerful avatar subsystem that you can use (and that's automatically utilized in its own official worlds), called the "Common Avatar System" or just "Common Avatar". This system automatically constructs [[Special:MyLanguage/Avatar|typical avatars]] with tools and allows to load user's currently active avatar object from the cloud.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
また、システム内で任意のオブジェクトから簡単に新しいアバターを作成できる[[Special:MyLanguage/Avatar|コンポーネントのセット]]も付属しています。これによりResoniteのツールを使用してインポート済みのモデル、ペンやツールで書いたもの、形から新しいアバターを作成したり、[[Special:MyLanguage/ProtoFlux|ProtoFlux]]を使用し、動作を追加したりできます。
It also comes with a [[Special:MyLanguage/Avatar|set of components]] to easily construct new avatars from arbitrary objects right within the system, allowing users to make new avatars from imported models, drawings and shapes made using tools found in Resonite and add behaviors using [[Special:MyLanguage/ProtoFlux|ProtoFlux]].
</div>


[[Category:Avatar]]
[[Category:Avatar]]

Latest revision as of 12:10, 19 June 2025

Resonite by itself doesn't have a concept of a user avatar and its associated behaviors, however it comes with a set of components that provide a conventional (but highly flexible) avatar system that will cover most situations. However as with anything else in Resonite, you can build entirely your own to suit your needs or omit it completely, if you don't need avatars at all.

Resonite 自体には、ユーザーアバターとそれに関連する行動の概念はありませんが、コンポーネント の組み合わせ次第で、結果として慣例的な(ただし、複雑に組み合わせができる)アバターシステムをカバーしたものを提供している。しかし、Resoniteでよくあるように、自分のニーズに合わせて完全に独自のものを作ることもできますし、アバターが全く必要ない場合は完全に省略することもできます。

このページでは、Resoniteのアバターシステム構築の背景にあるアイデアとコンセプト、およびさまざまな動作 (音声や動きなど) の処理方法について説明します。

基本概念

Resoniteにあるすべてのワールドは、コンポーネントが付いたオブジェクトスロットの階層から構成されます。すべてのアバターシステムはこの同じ階層の一部であり、ユーザーのアバターとシーン内の他のオブジェクトとの間に明確な区別はありません。これがシステムに大きな柔軟性を与えている所以です。

Resoniteのワールドには、User JoinedUser Leftが用意されています。これらのイベントは、新しいユーザーセッションに入退出するたびに呼び出されます。これには、セッションの開始時に暗黙的に参加するローカルユーザーも含まれます。セッションに参加しているユーザーは、それ自体に対して何も行いません。アバターも声も操作形態もありません。参加したユーザーは、その時点ではワールドと対話する方法がありません。

To provide such behaviors, you need to add a component to the world that listens to these events, such as the SimpleUserSpawn paired with a CommonAvatarBuilder. These components will create new objects in the world hierarchy for newly joined users, attach appropriate components that will read the user's inputs and microphone samples and apply it to the objects in the scene and attach components that provide visuals, such as 3D models or particle systems.

All parts of this process are completely up to you and your needs. Whatever you construct, Resonite will automatically replicate to all joined clients (and clients who will join in the future). It's also up to you whether you do the construction on the host or the client who joined (or some other client in the world, like on a Headless client) - for example clients can construct their own avatars locally, using their locally accessible data.

一般的なアバターシステム(コモンアバターシステム)

アバターはほとんどのアプリケーションにとって重要なものです。そのためResoniteには「Common Avatar System」、または「Common Avatar」と呼ばれる強力なアバターサブシステムが付属しています。このシステムはツールで典型的なアバターを自動的に構築し、ユーザの現在設定しているアバターをクラウドから読み込む処理を行います。

また、システム内で任意のオブジェクトから簡単に新しいアバターを作成できるコンポーネントのセットも付属しています。これによりResoniteのツールを使用してインポート済みのモデル、ペンやツールで書いたもの、形から新しいアバターを作成したり、ProtoFluxを使用し、動作を追加したりできます。