Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Editor.CreateCachedEditor

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function CreateCachedEditor(targetObject: Object, editorType: Type, ref previousEditor: Editor): void;
public static void CreateCachedEditor(Object targetObject, Type editorType, ref Editor previousEditor);
public static function CreateCachedEditor(targetObjects: Object[], editorType: Type, ref previousEditor: Editor): void;
public static void CreateCachedEditor(Object[] targetObjects, Type editorType, ref Editor previousEditor);

Parámetros

obj The object the editor is tracking.
editorType The requested editor type. null for the default editor for the object.
previousEditor The previous editor for the object. Once CreateCachedEditor returns previousEditor is an editor for the targetObject or targetObjects.
objects The objects the editor is tracking.

Descripción

On return previousEditor is an editor for targetObject or targetObjects. The function either returns if the editor is already tracking the objects, or Destroys the previous editor and creates a new one.

By default an appropriate editor is chosen that has a matching CustomEditor attribute. If an editorType is specified, an editor of that type is created instead. Use this if you have created multiple custom editors where each editor shows different properties of the object. previousEditor will be NULL if objects are of different types or if no approprate editor was found.