unity-bookmark

Save and restore Unity Scene View camera positions and selections as bookmarks.

Updated Aug 18, 2026
One-click install
npx skills add https://github.com/ethanJPope/Our-Main-Hackathon-Game --skill unity-bookmark-ethanjpope
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unity-bookmark
Source: https://github.com/ethanJPope/Our-Main-Hackathon-Game/tree/main/.agents/skills/unity-skills/skills/bookmark
Command: npx skills add https://github.com/ethanJPope/Our-Main-Hackathon-Game --skill unity-bookmark-ethanjpope

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Navigating back to specific camera angles and object selections in the Unity Editor Scene View is repetitive manual work, especially when iterating across multiple areas of a large scene. This Skill lets you save, list, restore, and delete named Scene View bookmarks programmatically. ## Core Features & Use Cases - Save viewpoints: bookmark_set captures the current Scene View camera position and object selection under a named bookmark, with an optional note. - Restore viewpoints: bookmark_goto jumps the Scene View camera and selection back to a saved bookmark. - Manage bookmarks: bookmark_list shows all saved bookmarks with metadata, and bookmark_delete removes one (restricted under Approval mode). - Use Case: While reviewing a large level, save bookmarks for each area of interest (e.g., "spawn-point", "boss-arena"), then instantly jump between them during inspection instead of manually flying the camera. ## Quick Start Ask the AI to save the current Scene View camera position as a bookmark named "overview" using the unity bookmark skill.

Frequently Asked Questions about unity-bookmark

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I save a Scene View camera position in Unity?

Use the bookmark_set operation with a bookmarkName parameter to capture the current Scene View camera position and object selection. You can optionally attach a note, and later restore the viewpoint with bookmark_goto.

How do I restore a saved camera angle in the Unity Scene View?

Call bookmark_goto with the bookmark name to restore both the Scene View camera position and the saved object selection. Use bookmark_list first if you need to see which bookmarks exist.

Do Unity bookmarks save the scene state or asset changes?

No. Bookmarks only store the Scene View camera position and the current object selection, and they exist in memory only. For scene save/load use the scene module, and for object state snapshots use the workflow module.

Why does bookmark_delete fail with MODE_FORBIDDEN in Unity?

bookmark_delete is classified as a Delete operation and is forbidden under Auto mode, returning MODE_FORBIDDEN. It only runs under Bypass mode or through a user-managed Allowlist entry, while bookmark_set and bookmark_goto require a grant in Approval mode.

What is the difference between bookmark_set and bookmark_save in Unity skills?

bookmark_save does not exist; the correct operation is bookmark_set. Similarly, bookmark_load and bookmark_restore do not exist—use bookmark_goto, and use bookmark_delete instead of bookmark_remove.