GetScript()
Gets the imported MonoScript. If the imported C# file contains multiple classes, the first is returned.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEditor
- Assembly: UnityEditor.CoreModule
public MonoScript GetScript()
Returns
Type | Description |
|---|---|
| MonoScript | Returns the imported script. |
Examples
using UnityEngine;using UnityEditor;class Example{ [MenuItem("Examples/Output the Name of an Imported MonoScript")] public static void OutputTheNameOfAnImportedMonoScript() { var assetPath = "Assets/MyMonoBehaviour.cs"; var monoImporter = AssetImporter.GetAtPath(assetPath) as MonoImporter; var monoScript = monoImporter.GetScript(); Debug.Log($"{assetPath} contains {monoScript.GetClass().FullName}"); }}