unity-mesh-fracture copilot-instructions.md

unity-mesh-fracture copilot-instructions.md is an instructions file for GitHub Copilot from sinanata/unity-mesh-fracture. It costs 346 tokens per session, scanned A, original, MIT.

Repository instructions for a Unity mesh-fracture project, where 3D meshes are split into pieces when they break or explode. They describe the fracture API, loading-time preparation, materials, previews, and review checks.

In plain words
What is it for?
Use them when implementing or reviewing mesh breaking, preparing fragments during loading, retrieving them at impact time, configuring fragment materials, or running builds and previews.
Why use it?
They prevent incompatible Unity features and rendering choices, such as using the Burst compiler or the wrong shader, from breaking the project.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot instructions file. Also seen: mentions AGENTS.md.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/sinanata/unity-mesh-fracture/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/sinanata/unity-mesh-fracture

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for unity-mesh-fracture copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sinanata/unity-mesh-fracture/copilot-instructions.svg)](https://agentmods.dev/instructions/sinanata/unity-mesh-fracture/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/sinanata/unity-mesh-fracture/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/sinanata/unity-mesh-fracture/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 346 This file is loaded in full into every session.
When invoked 346 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00346 $0.00346
Opus 5 $0.00173 $0.00173
Sonnet 5 $0.00069 $0.00069
Haiku 4.5 $0.00035 $0.00035

Measured 6d ago against content hash 2e84fd03da8f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

unity-mesh-fracture copilot-instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/copilot-instructions.md · 13 lines

What it actually says

GitHub Copilot instructions

This repository follows the cross-tool AGENTS.md standard. Read /AGENTS.md for the full guide: the MeshFracture API, the bake-at-load / look-up-at-impact pipeline, the material rules, build and preview commands, and the pull-request checklist.

The rules that matter most:

  • "Burst" here is the FractureBurst explosion component, not Unity's Burst compiler. The runtime is single-threaded managed C# over UnityEngine types. Never add [BurstCompile], IJob*, NativeArray<T>, or Unity.Mathematics / Unity.Collections / Unity.Jobs usings — none are dependencies.
  • Bake at load, look up at impact. MeshFragmenter.Fragment is a synchronous O(n²) CPU call; call FragmentCache.RequestPreBake on a loading screen, then FragmentCache.TryGet at the moment of impact.
  • Fragment materials must be transparent, per-burst instances, with ZWrite ON. Copy MaterialFactory.ConfigureFractureTransparent; don't reintroduce a custom .shader (it renders black on WebGL2).
  • Source meshes must be Read/Write-enabled, or Fragment reads empty vertex arrays.
  • Two submeshes per fragment: 0 = exterior, 1 = cap/interior — pass both materials to Initialize.
  • No using LeapOfLegends.*. Runtime code lives in the MeshFracture namespace; demo code under MeshFractureDemo.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 13 lines · 346 tokens per session scan A 2e84fd03da8f

Subscribe to this mod's changes

unity-mesh-fracture copilot-instructions.md is an instructions file published in the GitHub repository sinanata/unity-mesh-fracture (46 stars, last pushed 1mo ago), licensed MIT. It adds 346 tokens to every session, about $0.0017 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

unity-cli-loop AGENTS.md

AGENTS.md instructions for hatayama/unity-cli-loop, covering architecture overview, repository map, cli / unity package compatibility, project runner pin and generated skill files.

hatayama/unity-cli-loop · 3,322 tokens

Aspid.FastTools CLAUDE.md

Claude Code instructions for VPDPersonal/Aspid.FastTools, covering обзор репозитория, сборка, архитектура, карта функциональности and соглашения по коду редактора.

VPDPersonal/Aspid.FastTools · 2,948 tokens

unity-cli CLAUDE.md

Claude Code instructions for bigdra50/unity-cli, covering claude.md, project overview, commands, install globally (provides: unity-cli, u, unity commands) and run relay server standalone.

bigdra50/unity-cli · 985 tokens

unity-cli-loop CLAUDE.md

Claude Code instructions for hatayama/unity-cli-loop, a project described as: Let AI Drive Unity, from Editor to Play Mode.

hatayama/unity-cli-loop · 3 tokens

Unity-MCP copilot-instructions.md

Copilot instructions for IvanMurzak/Unity-MCP, covering project guidelines, critical rules, no c# reflection for private access, code review and code style.

IvanMurzak/Unity-MCP · 895 tokens

mcp-unity AGENTS.md

AGENTS.md instructions for CoderGamester/mcp-unity, covering mcp unity — ai agent guide (mcp package), purpose (what this repo is), how it works (high-level data flow), key defaults & invariants and repo layout (where to change what).

CoderGamester/mcp-unity · 2,750 tokens