Add copy to clipboard button in editor

Claude-Session: https://claude.ai/code/session_01PoLmSR1pFVyHf8i5b1rNWk
This commit is contained in:
2026-07-21 11:29:24 -04:00
parent 62f2f8483f
commit d7b113c59a
8 changed files with 343 additions and 7 deletions
+3
View File
@@ -168,6 +168,9 @@ export const exportTarget = (
destination: string,
) => invoke<string>("export_target", { path, format, destination });
export const renderTargetPng = (path: string) =>
invoke<number[]>("render_target_png", { path });
export interface Asset {
name: string;
kind: "font" | "image" | "file";