【Unity】Build Profile2025/06/07Build Profileとは? BuildProfileは、Unity6000系から導入された機能で、 UnityEditorのメニューからFile > Build Profileを選択すると表示される画面で、 各プラットフォーム向けのビルド設定を行うことができます。 Unity - Manual: Introduction to build profiles docs.unity3d.comUnityUnity6
【Unity】UGS - CloudSave2025/05/31Unity Gaming ServicesのCloudSave Unity Gaming Services (UGS)には、プレイヤーのセーブデータをオンラインで保存出来るCloudSaveという機能が用意されています。 CloudSaveを使用することで、プレイヤーのセーブデータをバックアップしたり、 端末の機種変更に備えてデバイスを跨いだセーブデータの同期に対応できます。 Cloud Save • Cloud Save • Unity Docs Store player and game data in the cloud so players can access it everywhere and across devices. docs.unity.comUnityC#UGS
【Unity】UGS - Analytics2025/05/24Unity Gaming ServicesのAnalytics Unity Gaming Services (UGS)にはAnalyticsという、プレイヤーの動向を分析するサービスが用意されています。 Analyticsを活用すると、プレイヤーの行動やゲームのパフォーマンスを追跡し、データを可視化することができます。 これにより、プレイヤーの傾向を把握し、データに基づいたバランス調整やゲーム改善に役立てることが可能です。 Unity Analytics • Analytics • Unity Docs Analyze player engagement, optimize game performance, and make data-driven decisions to enhance your game's success. docs.unity.comUnityC#UGS
【Unity】UGS - Remote Config2025/05/17Unity Gaming ServicesのRemoteConfig Unity Gaming Services (UGS)には、RemoteConfigというパラメータの調整や機能の有効化を行う機能があります。 事前にゲーム側で対応しておく必要がありますが、配信後のゲームアプリに対して あとからゲームバランスを調整したり、期間限定イベントを有効にしたりすることが可能です。 Remote Config の概要 • Remote Config • Unity Docs Learn about Remote Config to tune game design without deploying new versions. docs.unity.comUnityC#UGS
【Unity】UGS - Leaderboards2025/05/10Unity Gaming ServicesのLeaderboards Unity Gaming Services (UGS)には、ユーザーのスコアを集計し、順位をつけるLeaderboardsというサービスが用意されています。 簡単に言えばランキング機能です。 スコア制のゲームでは、リーダーボードを追加することで競争の楽しさが生まれ、プレイヤーが繰り返しプレイする動機付けにもなります。 Leaderboards • Leaderboards • Unity Docs Understand the core concepts and implementation options for Leaderboards, a gaming service that ranks and stores player scores. docs.unity.comUnityC#UGS
【Unity】UGS - Authentication2025/05/03Unity Gaming ServicesのAuthentication Unity Gaming Services (UGS)には、プレイヤーの認証を簡単に管理できるAuthenticationという強力な機能が用意されています。 Authenticationを使用すると、プレイヤー個人を識別できるため、機種変更や複数のデバイス間で進行状況を共有できるようになります。 また、Authenticationは複数のアイデンティティプロバイダをサポートしており、 Google アカウントや Apple アカウントなどを使用したログイン方法にも対応できます。 Unity Authentication • Authentication • Unity Docs Implement secure player authentication with anonymous, platform-specific, and custom sign-in solutions for your game. docs.unity.comUnityC#UGS
【Unity】Unity Gaming Services2025/04/26Unity Gaming Servicesとは? Unity Gaming Services (UGS)は、Unityが提供するクラウドベースのサービス群で、 マルチプレイヤー機能の追加、収益化、分析、プレイヤー管理などを簡単に実装できるプラットフォームです。 多くの有名なゲームでも導入されています。 LiveOps ゲーム開発ツールとプレイヤーインサイト | Unity Unity の liveops ゲーム開発ツールを使用すると、プレイヤーのインサイトをより深く理解し、貴重な開発時間を節約できます。 UnityUnityC#UGS
【Unity】アセット紹介:HotReload2025/04/19Hot Reload | Edit Code Without Compiling UnityEditorで実行中にスクリプトを変更した場合、一度終了してコンパイルし、再度実行する必要があります。 Unityにはホットリロード機能があり、実行中のスクリプト変更を適用できますが、対応が難しく、あまり活用されていません。 今回紹介するHotReloadアセットを導入すると、Editorの実行を止めることなくスクリプトの変更を適用できます。 Hot Reload | Edit Code Without Compiling | ユーティリティ ツール | Unity Asset Store Use the Hot Reload | Edit Code Without Compiling from The Naughty Cult on your next project. Find this utility tool & more on the Unity Asset Store. assetstore.unity.comUnityAsset
【Unity】物理演算:衝突イベント2025/04/12物理演算のイベント Unityの物理演算では、オブジェクト同士の衝突や接触を検知するために、物理イベントが用意されています。 衝突判定を行う際、OnCollision系とOnTrigger系のイベントには以下の違いがあります。 OnCollisionEnter(Collision collision):物理的な衝突が発生したときに呼ばれる OnTriggerEnter(Collider other):トリガーを持つコライダーと接触したときに呼ばれる(物理的な衝突は発生しない) これらのイベントは、MonoBehaviourを継承したクラス内で定義すると、条件を満たしたときに自動的に呼び出されます。 Unity - Scripting API: Collider.OnCollisionEnter(Collision) docs.unity3d.com Unity - Scripting API: Collider.OnTriggerEnter(Collider) docs.unity3d.comUnityC#物理演算
【Unity】物理演算:力を加える2025/04/05Rigidbodyを物理的に移動させる 3D空間でオブジェクトを物理的に移動させる場合、TransformのpositionやlocalPositionを直接変更するだけでは、 他のオブジェクトとの衝突や物理演算の影響を受けません。 物理的な移動を実現するためには、Rigidbodyを利用し、以下のような方法で移動させることができます。Unity物理演算