Created
March 21, 2024 23:36
-
-
Save baba-s/7c03548ada849eb312718b79806662ce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEditor; | |
using UnityEngine; | |
[InitializeOnLoad] | |
public static class Example | |
{ | |
static Example() | |
{ | |
BuildPlayerWindow.RegisterBuildPlayerHandler( OnBuildPlayer ); | |
} | |
private static void OnBuildPlayer( BuildPlayerOptions buildPlayerOptions ) | |
{ | |
Debug.Log( "ピカチュウ" ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment