API ReferenceGE Extensionseditor
Camera Bookmarks
Simple editor tool for saving and restoring camera positions as named bookmarks. Supports clipboard copy/paste of camera transforms.
Simple editor tool for saving and restoring camera positions as named bookmarks. Supports clipboard copy/paste of camera transforms.
Public Functions
| Function | Description |
|---|---|
M.onEditorInitialized() | Registers window and menu item |
M.onEditorGui() | Renders the bookmarks list UI |
M.onExtensionLoaded() | Extension load callback (empty) |
Key Features
- Named Bookmarks - Type a name and click "Add" to save current camera position
- Go To - Instantly jump camera to any saved bookmark
- Copy/Paste - Copy camera transform to clipboard, paste from clipboard
- Delete - Remove individual bookmarks from the list
UI Layout
[New bookmark name: ___________] [Add]
Clipboard: [Copy Location] [Paste Location]
┌──────────────────────────────────────┐
│ [Go To] [Copy] [Delete] BookmarkName │
│ [Go To] [Copy] [Delete] BookmarkName │
│ ... │
└──────────────────────────────────────┘Usage Example
-- Open the camera bookmarks window
editor.showWindow("cameraBookmarks")
-- Programmatic bookmark operations
editor.addCameraBookmark("My Position")
editor.copyCameraBookmarkToClipboard(editor.getCamera())
editor.pasteCameraBookmarkFromClipboard()See Also
- cameraTransform - Raw camera transform JSON editing
- camPathEditor - Full camera path animation tool