以下の内容はhttps://baba-s.hatenablog.com/entry/2022/09/05/204906より取得しました。


【Unity】ディープリンクでゲームオブジェクトの PingObject を実行する例

概要

using Needle.Deeplink;
using UnityEditor;
using UnityEngine;

internal static class Example
{
    [DeepLink( RegexFilter = @"com.unity3d.kharma:ping-game-object\/(.*)" )]
    private static bool PingGameObject( string gameObjectName )
    {
        Debug.Log( gameObjectName );
        var gameObject = GameObject.Find( gameObjectName );
        EditorGUIUtility.PingObject( gameObject );
        return true;
    }
}
[EventSystem を Ping](https://fwd.needle.tools/deeplink?com.unity3d.kharma:ping-game-object/EventSystem)

関連記事




以上の内容はhttps://baba-s.hatenablog.com/entry/2022/09/05/204906より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14