Attention: Here be dragons

This is the latest (unstable) version of this documentation, which may document features not available in or compatible with released stable versions of Godot.

MissingResource

继承: Resource < RefCounted < Object

编辑器内部类,用于保存未知资源的数据。

描述

这是一种编辑器内部类,用于保存未知类型资源的数据(该类型很有可能是由不再加载的扩展提供的)。它无法被手动实例化或放置在场景中。

警告:除非你知道自己在做什么,否则忽略缺失的资源。缺失资源的已有属性可以在代码中自由修改,无论它们的类型如何。

属性

String

original_class

bool

recording_properties


属性说明

String original_class 🔗

  • void set_original_class(value: String)

  • String get_original_class()

该资源本来的类名(见 Object.get_class)。


bool recording_properties 🔗

  • void set_recording_properties(value: bool)

  • bool is_recording_properties()

如果设置为 true,则允许使用 Object.set 在已有属性之上添加新属性。