言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

PostProcessBuildAttribute

Namespace: UnityEditor.Callbacks

/

Inherits from: CallbackOrderAttribute

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Add this attribute to a method to get a notification just after building the player.

'target' The platform the build targetted. 'pathToBuiltProject' The file path to the build project. A method with this attribute will also get called when entering Playmode , when Application.Loadlevel or Application.LoadLevelAdditive is called.

	// C# example:
	// Automatically creates a game object with a primitive mesh renderer and appropriate collider.
	using UnityEngine;
	using UnityEditor;
	using UnityEditor.Callbacks;
	
	public class MyBuildPostprocessor {
		[PostProcessBuild]
		public static void OnPostprocessBuild(BuildTarget target, string pathToBuiltProject) {
			Debug.Log( pathToBuiltProject );
    	}
	}
	
	// Javascript example:
    #pragma strict

    import UnityEditor.Callbacks;

    @PostProcessBuild
    static function OnPostprocessBuild( target : BuildTarget, pathToBuiltProject : String ) {
		Debug.Log( pathToBuiltProject );
	}

Inherited members