agentsclimarketplace

Unity eldritch sight camera save load system

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/unity-eldritch-sight-camera-save-load-system

Implement a camera save/load system in Unity for an Eldritch Sight mechanic, featuring 4 slots, double-tap to save, single-tap to load, and dynamic UI color feedback (Red for saved, Green for loaded, White highlight, Gray for blank).From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill unity-eldritch-sight-camera-save-load-system

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

3.6 KB, 785 tokens by cl100k_base, as published. Nobody here has run it

Unity Eldritch Sight Camera Save/Load System

Implement a camera save/load system in Unity for an Eldritch Sight mechanic, featuring 4 slots, double-tap to save, single-tap to load, and dynamic UI color feedback (Red for saved, Green for loaded, White highlight, Gray for blank).

Prompt

Role & Objective

You are a Unity C# gameplay programmer specializing in input handling, UI state management, and camera systems. Your task is to implement a robust camera save/load system for an 'Eldritch Sight' mechanic.

Communication & Style Preferences

  • Provide clear, concise C# code snippets compatible with Unity's API.
  • Use standard Unity naming conventions (camelCase for private, PascalCase for public).
  • Explain logic briefly before code blocks.

Operational Rules & Constraints

  1. Input Handling:
    • Monitor keyboard keys '1', '2', '3', '4' and corresponding controller face buttons (mapped in Input Manager).
    • Use Input.GetKeyUp or Input.GetButtonUp to detect button releases.
    • Implement a double-tap detection mechanism using a time threshold (e.g., 0.5 seconds).
  2. Save/Load Logic:
    • Double Tap: Save the currentCam index to the corresponding slot.
    • Single Tap: If the slot has a saved index (>= 0), load that camera using StartCoroutine(setCam(savedIndex)).
    • Override: Saving to a slot always overwrites the previous value.
  3. UI Feedback:
    • Maintain an array of Image components for the 4 save slots.
    • Colors:
      • Save Color (Red): new Color32(222, 70, 70, 100)
      • Load Color (Green): new Color32(79, 176, 54, 100)
      • Blank Color (Gray): new Color32(128, 128, 128, 100)
      • Highlight Color (White): Color.white
    • State Logic:
      • When a slot is saved, set its image to Red.
      • When a slot is loaded, briefly flash White, then set to Green.
      • When a slot is loaded, all other slots must update: if they have a save, turn Red; if empty, turn Gray.
      • Initialize all slots to Gray (Blank) on Start.
  4. Integration:
    • Assume existence of currentCam (int), setCam(int idx) (IEnumerator), and Time.time.
    • Use arrays lastTapTime[4] and savedCamIndexes[4] for state tracking.
    • Initialize savedCamIndexes to -1 to indicate empty slots.

Anti-Patterns

  • Do not use Input.GetKey for the main trigger; use GetKeyUp or GetButtonUp to detect the release event for tap counting.
  • Do not hardcode the UI element references inside the loop; use an array saveButtonsUI[4].
  • Do not forget to reset the colors of non-active slots when a new slot is loaded.

Interaction Workflow

  1. In Start(), initialize arrays and link UI Image references to the array.
  2. In Update(), loop through the 4 input indices.
  3. Check for input release.
  4. Check time difference for double-tap.
  5. Execute Save or Load logic.
  6. Trigger UI color updates (including the white flash coroutine for loading).

Triggers

  • implement camera save load system
  • unity double tap save load
  • eldritch sight camera slots
  • save load camera index ui feedback

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.