Version: 2021.3
言語: 日本語
public static void SetExecutionOrder (MonoScript script, int order);

パラメーター

script The script to set the execution order for.
order The execution order for the given MonoScript.

説明

Sets the execution order for a MonoScript. This method forces Unity to reimport the MonoImporter for the target script.

This is the same execution order that the Script Execution Order Settings window displays.

The default execution order for scripts is 0.

See Also: MonoImporter.GetExecutionOrder.

using UnityEngine;
using UnityEditor;

class Example { [MenuItem("Examples/Set Execution Order for a Script")] public static void SetExecutionOrderForAScript() { var assetPath = "Assets/MyMonoBehaviour.cs"; var monoImporter = AssetImporter.GetAtPath(assetPath) as MonoImporter;

MonoImporter.SetExecutionOrder(monoImporter.GetScript(), 100); } }