Practice free →
Home › Per Unity Asset Store + Unreal Marketplace guide…

Per Unity Asset Store + Unreal Marketplace guidelines, a TOOL author's INSPECTOR should handle undo via which API call?

AUndo.RecordObject() / FScopedTransaction call
BConsole.WriteLine() with version tags only
CDateTime.Now.Ticks for replay logging only
DSystem.Diagnostics.Trace.WriteLine() only
Answer & Solution
Correct answer: A. Undo.RecordObject() / FScopedTransaction call
Unity Editor docs + Unreal docs: tools must call the engine undo system before mutating data. Otherwise users lose Ctrl+Z safety and reviewers reject the tool.
Solve this in the app — Practice practice & 24k+ MCQs →
Related questions