chore: create unity project#703
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 813ea99. Configure here.
| "com.unity.modules.wind": "1.0.0", | ||
| "com.unity.modules.xr": "1.0.0" | ||
| } | ||
| } |
There was a problem hiding this comment.
Audience package reference missing from manifest
High Severity
The manifest.json is missing the com.immutable.audience dependency entry. The PR description states the manifest references the package via file:../../../src/Packages/Audience, and the existing examples/passport/ pattern includes "com.immutable.passport": "file:../../../src/Packages/Passport" — but the audience manifest has no such entry. Without it, this example project cannot fulfill its stated purpose of verifying the audience package compiles in the Unity Editor.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit 813ea99. Configure here.
813ea99 to
a36d70d
Compare
a36d70d to
31559b7
Compare


Summary
examples/audience/for verifying thecom.immutable.audiencepackage compiles inside the Unity Editor.file:../../../src/Packages/Audience, matching the existingexamples/passport/pattern.Known issue for reviewers
Opening this branch alone in Unity will fail to compile:
src/Packages/Audience/Tests/Runtime/Transport/HttpTransportTests.cs:378usesAssert.DoesNotThrowAsync, which is absent from the NUnit that ships withcom.unity.test-framework1.1.33. Fix will follow in a separate PR. Merge this PR together with or after that fix.Test plan
examples/audience/in Unity Hub (Editor version perProjectSettings/ProjectVersion.txt).🤖 Generated with Claude Code
Note
Low Risk
Adds Unity project configuration and lockfiles only, with no production code or security-sensitive logic changes; main risk is repo churn/size and Unity version/package pin compatibility.
Overview
Adds a new minimal Unity project scaffold under
examples/audience/, including UnityProjectSettings/Packagesconfiguration and apackages-lock.json, to serve as an editor-level compilation/packaging smoke test environment.No runtime/package code is changed; this PR primarily introduces Unity-generated settings/assets metadata (input/quality/graphics/audio/etc.) pinned to Unity
2021.3.45f2.Reviewed by Cursor Bugbot for commit 31559b7. Bugbot is set up for automated code reviews on this repo. Configure here.