Skip to content

[Communication] PR1: Added Base Files for Mailbox#212

Merged
tryuan99 merged 27 commits into
masterfrom
joseph/communication_delay_PR1
May 11, 2026
Merged

[Communication] PR1: Added Base Files for Mailbox#212
tryuan99 merged 27 commits into
masterfrom
joseph/communication_delay_PR1

Conversation

@Joseph0120

Copy link
Copy Markdown
Collaborator

Files Added:

iMessagePayload.cs -> Interface for MessagePayload

LatencyTable.cs -> Creates table that keeps track of the delay between every agent. Table is n * n sized, n is the size of CommsNode.

Message.cs -> Message is a base envolope for message sending. It always carries Sender, Reciever, Type, and Payload.
This file wraps the payload data with transport metadata. It interntionally layers and splits the
payload and the transportation data. Mailbox only focuses on transportation (enqueue, latency,
and delivery timing)

MessagePayload.cs -> MessagePayload defines different types of new payload objects. Payload is carried by
Message envolopes. Concrete payload content lives in here and are only read explicitly
by receivers.

PendingMessage.cs -> This is the mailbox's internal queue item. It stores the Message object
and DeliverAt into the priority queue and pops the message when DeliverAt
time has reached.

@stacklane-pr-stack-visualizer

stacklane-pr-stack-visualizer Bot commented Mar 31, 2026

Copy link
Copy Markdown

🧱 Stack PR · Base of stack

Stack Structure:

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces a messaging framework for agents, including structures for message payloads, latency tracking, and a pending message queue. I have reviewed the implementation and suggest the following improvements: address the potential fragility of using enum casts as array indices in the LatencyTable, optimize the LatencyTable initialization loop to avoid unnecessary iterations when the default value is zero, refactor the message system to use a generic Message class to reduce boilerplate, and implement IComparable in the PendingMessage struct to better support priority queue operations.

Comment thread Assets/Scripts/Agents/Messaging/LatencyTable.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/LatencyTable.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/Message.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/PendingMessage.cs Outdated
@coderabbitai

coderabbitai Bot commented Mar 31, 2026

Copy link
Copy Markdown

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

This pull request introduces a new agent messaging infrastructure consisting of four files. It defines an empty IMessagePayload marker interface, an abstract Message envelope class with Sender, Receiver, and Type properties, three sealed message implementations (AssignSubInterceptorRequestMessage, AssignTargetMessage, ReassignTargetRequestMessage), three corresponding payload classes implementing IMessagePayload, and a PendingMessage readonly struct for scheduling message delivery. All constructors include null-validation to enforce non-null references. No runtime behavior beyond container and envelope logic is introduced.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Suggested reviewers

  • tryuan99
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 14.29% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately and clearly identifies the main change: adding base infrastructure files for a mailbox communication system.
Description check ✅ Passed The description is directly related to the changeset, explaining the purpose and intent of each added file.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch joseph/communication_delay_PR1

Tip

💬 Introducing Slack Agent: The best way for teams to turn conversations into code.

Slack Agent is built on CodeRabbit's deep understanding of your code, so your team can collaborate across the entire SDLC without losing context.

  • Generate code and open pull requests
  • Plan features and break down work
  • Investigate incidents and troubleshoot customer tickets together
  • Automate recurring tasks and respond to alerts with triggers
  • Summarize progress and report instantly

Built for teams:

  • Shared memory across your entire org—no repeating context
  • Per-thread sandboxes to safely plan and execute work
  • Governance built-in—scoped access, auditability, and budget controls

One agent for your entire SDLC. Right inside Slack.

👉 Get started


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 6

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@Assets/Scripts/Agents/Messaging/LatencyTable.cs`:
- Around line 19-27: The LatencyTable constructor assigns defaultSeconds
directly producing negative values unlike the Set() method; update the
constructor for LatencyTable to clamp defaultSeconds (use Mathf.Max(0f,
defaultSeconds)) before filling the _latency[,] array so all initial entries
match the non-negative enforcement used by Set().

In `@Assets/Scripts/Agents/Messaging/Message.cs`:
- Line 3: Update the class/file comment for Message (the top-line comment above
the Message class) to correct the typos: change "envolope" to "envelope" and
"Reciever" to "Receiver", so the comment reads something like "Message is a base
envelope for message sending. It always carries Sender, Receiver, Type, and
Payload." Ensure you only change the comment text associated with the Message
definition and preserve the original punctuation and casing for identifiers
Sender, Receiver, Type, and Payload.
- Around line 12-15: Fix typos in the class/file comment for Message: replace
"envolope" with "envelope", "Reciever" with "Receiver", "interntionally" with
"intentionally", and "interntionally layers" -> "intentionally layers"; ensure
the sentence reads clearly (e.g., "Message is a base envelope for message
sending. It always carries Sender, Receiver, Type, and Payload. This file wraps
the payload data with transport metadata. It intentionally layers and splits the
payload and the transportation data. Mailbox only focuses on transportation
(enqueue, latency, and delivery timing)"). Update the block comment above the
Message definition accordingly.
- Around line 17-29: Add a short XML doc comment to the Message class describing
how terminated agents are handled: state that Message stores raw IAgent
references (Sender and Receiver) and that consumers or the mailbox are
responsible for checking IAgent.IsTerminated or subscribing to
IAgent.OnTerminated before delivering/processing messages to avoid operating on
terminated agents; mention that Message itself does not automatically remove or
null out references on termination. Update the summary for the Message
constructor and the Sender/Receiver properties (in the Message class) to
reference IAgent.IsTerminated and OnTerminated so maintainers know where to
implement termination checks.

In `@Assets/Scripts/Agents/Messaging/MessagePayload.cs`:
- Around line 3-5: Fix the spelling typo in the class/file comment for
MessagePayload: change "envolopes" to "envelopes" in the top block comment that
describes MessagePayload and payload carriage by Message envelopes so the
comment reads correctly and remains clear for future readers.

In `@Assets/Scripts/Agents/Messaging/PendingMessage.cs`:
- Around line 3-5: Fix the spelling mistake in the class comment for the mailbox
queue item in PendingMessage.cs by changing "internaal" to "internal" (the
comment describing the mailbox's internal queue item that stores the Message
object and DeliverAt for the PendingMessage class/struct).
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

Run ID: b899f98e-8555-4c43-ad9d-ef0b685d1c1e

📥 Commits

Reviewing files that changed from the base of the PR and between e8ddb89 and 589802e.

📒 Files selected for processing (10)
  • Assets/Scripts/Agents/Messaging.meta
  • Assets/Scripts/Agents/Messaging/IMessagePayload.cs
  • Assets/Scripts/Agents/Messaging/IMessagePayload.cs.meta
  • Assets/Scripts/Agents/Messaging/LatencyTable.cs
  • Assets/Scripts/Agents/Messaging/LatencyTable.cs.meta
  • Assets/Scripts/Agents/Messaging/Message.cs
  • Assets/Scripts/Agents/Messaging/Message.cs.meta
  • Assets/Scripts/Agents/Messaging/MessagePayload.cs
  • Assets/Scripts/Agents/Messaging/MessagePayload.cs.meta
  • Assets/Scripts/Agents/Messaging/PendingMessage.cs

Comment thread Assets/Scripts/Agents/Messaging/LatencyTable.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/Message.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/Message.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/Message.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/MessagePayload.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/PendingMessage.cs Outdated

@tryuan99 tryuan99 left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Please address or resolve the AI PR review before requesting a review.
  2. Add newlines to all files.
  3. Comment style in this repo is // Some comment that starts with capital letter and ends with a period.
  4. Run pre-commit install and make sure that clang-format is enabled before each commit.

Comment thread Assets/Scripts/Agents/Messaging/IMessagePayload.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/LatencyTable.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/LatencyTable.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/PendingMessage.cs Outdated

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@Assets/Scripts/Agents/Messaging/LatencyTable.cs`:
- Line 51: The exception message is wrong: update the
ArgumentOutOfRangeException thrown for the parameter named node to reference
CommsNode (e.g., "Unknown CommsNode" or "Unknown CommsNode type.")—modify the
throw statement that currently reads throw new
ArgumentOutOfRangeException(nameof(node), node, "Unknown Interceptor Type."); so
it accurately mentions CommsNode (keep nameof(node) and node arguments
unchanged).
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

Run ID: 3040908b-ff3c-49ff-bdfc-7edfab1fba8e

📥 Commits

Reviewing files that changed from the base of the PR and between 589802e and 6861d67.

📒 Files selected for processing (5)
  • Assets/Scripts/Agents/Messaging/IMessagePayload.cs
  • Assets/Scripts/Agents/Messaging/LatencyTable.cs
  • Assets/Scripts/Agents/Messaging/Message.cs
  • Assets/Scripts/Agents/Messaging/MessagePayload.cs
  • Assets/Scripts/Agents/Messaging/PendingMessage.cs

Comment thread Assets/Scripts/Agents/Messaging/LatencyTable.cs Outdated

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@Assets/Scripts/Agents/Messaging/Message.cs`:
- Around line 32-61: The three concrete message types
(AssignSubInterceptorRequestMessage, AssignTargetMessage,
ReassignTargetRequestMessage) duplicate a typed PayloadData property and an
override of the interface Payload; introduce a generic base Message<TPayload>
where TPayload : IMessagePayload that exposes a typed public TPayload Payload {
get; } and implements the IMessagePayload override (returning the typed Payload)
so concrete classes can inherit Message<AssignSubInterceptorRequestPayload>,
Message<AssignTargetPayload>, Message<ReassignTargetRequestPayload> and drop the
duplicated PayloadData and Payload override boilerplate; update the constructors
to assign the typed Payload in the generic base.

In `@Assets/Scripts/Agents/Messaging/PendingMessage.cs`:
- Around line 11-12: The auto-properties Sender and Receiver use
null-conditional access (Message?.Sender / Message?.Receiver) even though the
PendingMessage constructor enforces a non-null Message; remove the
null-conditional operators and access Message.Sender and Message.Receiver
directly in the Sender and Receiver properties so a default(PendingMessage) will
throw and surface the bug instead of silently returning null (adjust
PendingMessage constructor/validation only if you intend to allow default
instances).
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

Run ID: 1a726870-f3e3-4bf3-be5f-f6841c05b992

📥 Commits

Reviewing files that changed from the base of the PR and between 6861d67 and 8941186.

📒 Files selected for processing (5)
  • Assets/Scripts/Agents/Messaging/LatencyTable.cs
  • Assets/Scripts/Agents/Messaging/Message.cs
  • Assets/Scripts/Agents/Messaging/MessagePayload.cs
  • Assets/Scripts/Agents/Messaging/PendingMessage.cs
  • ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json

Comment thread Assets/Scripts/Agents/Messaging/Message.cs Outdated
Comment thread Assets/Scripts/Communication/PendingMessage.cs
@Joseph0120 Joseph0120 force-pushed the joseph/communication_delay_PR1 branch from 8941186 to a7438b5 Compare April 28, 2026 18:00

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

♻️ Duplicate comments (1)
Assets/Scripts/Agents/Messaging/Message.cs (1)

3-4: ⚠️ Potential issue | 🟡 Minor

Fix remaining typo in header comment (envolopeenvelope).

Line [3] still has the misspelling in the short header comment.

📝 Proposed fix
-// Message is a base envolope for message sending. It always carries Sender, Receiver, Type, and
+// Message is a base envelope for message sending. It always carries Sender, Receiver, Type, and
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@Assets/Scripts/Agents/Messaging/Message.cs` around lines 3 - 4, The header
comment on the Message class contains a typo: change "envolope" to "envelope" in
the top-line comment that describes Message as a base envelope for message
sending; locate the comment in Assets/Scripts/Agents/Messaging/Message.cs
associated with the Message type and update the word to "envelope" to correct
the spelling.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Duplicate comments:
In `@Assets/Scripts/Agents/Messaging/Message.cs`:
- Around line 3-4: The header comment on the Message class contains a typo:
change "envolope" to "envelope" in the top-line comment that describes Message
as a base envelope for message sending; locate the comment in
Assets/Scripts/Agents/Messaging/Message.cs associated with the Message type and
update the word to "envelope" to correct the spelling.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

Run ID: 7b08dceb-c56e-4213-99f0-83073172c8d2

📥 Commits

Reviewing files that changed from the base of the PR and between 8941186 and a7438b5.

📒 Files selected for processing (10)
  • Assets/Scripts/Agents/Messaging.meta
  • Assets/Scripts/Agents/Messaging/IMessagePayload.cs
  • Assets/Scripts/Agents/Messaging/IMessagePayload.cs.meta
  • Assets/Scripts/Agents/Messaging/LatencyTable.cs
  • Assets/Scripts/Agents/Messaging/LatencyTable.cs.meta
  • Assets/Scripts/Agents/Messaging/Message.cs
  • Assets/Scripts/Agents/Messaging/Message.cs.meta
  • Assets/Scripts/Agents/Messaging/MessagePayload.cs
  • Assets/Scripts/Agents/Messaging/MessagePayload.cs.meta
  • Assets/Scripts/Agents/Messaging/PendingMessage.cs

@tryuan99 tryuan99 left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

have you run this code? where are the .meta files?

Comment thread Assets/Scripts/Agents/Messaging/Message.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/Message.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/Message.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/MessagePayload.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/PendingMessage.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/PendingMessage.cs Outdated
Comment thread Assets/Scripts/Communication/PendingMessage.cs
Comment thread Assets/Scripts/Communication/PendingMessage.cs
Comment thread Assets/Scripts/Communication/IMessagePayload.cs
@Joseph0120 Joseph0120 requested a review from tryuan99 May 6, 2026 06:06

@tryuan99 tryuan99 left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

have you run this code? where are the .meta files?

Comment thread Assets/Scripts/Agents/Messaging/Message.cs Outdated
Comment thread Assets/Scripts/Generated/Proto/CommunicationConfig.cs

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

♻️ Duplicate comments (1)
Assets/Scripts/Agents/Messaging/PendingMessage.cs (1)

12-13: ⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Don't silently mask an invalid default struct here.

The null-conditional turns an accidental default(PendingMessage) into null sender/receiver values instead of failing at the source. If default instances are not valid queue entries, direct access is safer.

Suggested fix
-  public IAgent Sender => Message?.Sender;
-  public IAgent Receiver => Message?.Receiver;
+  public IAgent Sender => Message.Sender;
+  public IAgent Receiver => Message.Receiver;
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@Assets/Scripts/Agents/Messaging/PendingMessage.cs` around lines 12 - 13, The
properties Sender and Receiver on PendingMessage currently use the
null-conditional (Message?.Sender / Message?.Receiver) which masks an accidental
default(PendingMessage); change them to access Message directly (Message.Sender
/ Message.Receiver) so invalid default instances fail fast; update the
PendingMessage type to ensure Message cannot be null at construction or add an
explicit guard/assert in the struct (referencing PendingMessage, the Message
field/property, and the Sender/Receiver property getters) so callers get a clear
failure instead of null values.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@Assets/Scripts/Agents/Messaging/PendingMessage.cs`:
- Around line 15-17: The PendingMessage constructor accepts invalid deliverAt
values (negative, NaN, ±Infinity) that break queue ordering; update the
PendingMessage(float deliverAt, Message message) constructor to validate
deliverAt using float.IsNaN(deliverAt), float.IsInfinity(deliverAt), and
deliverAt < 0 and throw an ArgumentOutOfRangeException (or ArgumentException)
with a clear message when invalid, while still null-checking Message; ensure
DeliverAt is only assigned after the validation passes.

---

Duplicate comments:
In `@Assets/Scripts/Agents/Messaging/PendingMessage.cs`:
- Around line 12-13: The properties Sender and Receiver on PendingMessage
currently use the null-conditional (Message?.Sender / Message?.Receiver) which
masks an accidental default(PendingMessage); change them to access Message
directly (Message.Sender / Message.Receiver) so invalid default instances fail
fast; update the PendingMessage type to ensure Message cannot be null at
construction or add an explicit guard/assert in the struct (referencing
PendingMessage, the Message field/property, and the Sender/Receiver property
getters) so callers get a clear failure instead of null values.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

Run ID: 1aaeb194-d5a3-412e-9b85-63982d4375c9

📥 Commits

Reviewing files that changed from the base of the PR and between a7438b5 and 771e3f6.

⛔ Files ignored due to path filters (1)
  • Assets/Scripts/Generated/Proto/CommunicationConfig.cs is excluded by !**/generated/**
📒 Files selected for processing (3)
  • Assets/Scripts/Agents/Messaging/Message.cs
  • Assets/Scripts/Agents/Messaging/MessagePayload.cs
  • Assets/Scripts/Agents/Messaging/PendingMessage.cs

Comment thread Assets/Scripts/Agents/Messaging/PendingMessage.cs Outdated
@Joseph0120

Copy link
Copy Markdown
Collaborator Author

@tryuan99 Should I include Assets/Scripts/Generated/Proto/CommunicationConfig.cs? How about meta files?

@tryuan99

Copy link
Copy Markdown
Member

@tryuan99 Should I include Assets/Scripts/Generated/Proto/CommunicationConfig.cs? How about meta files?

Yes and yes. You should read about what the meta files are used for (https://stackoverflow.com/questions/42462989/what-is-a-meta-file-and-why-does-unity-create-them-for-all-of-my-assets#comment111250115_42471800)

@Joseph0120 Joseph0120 requested a review from tryuan99 May 10, 2026 07:13

@tryuan99 tryuan99 left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A lot of small comments - after the next revision, should be ready to merge

Comment thread Assets/Scripts/Agents/Messaging/Message.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/Message.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/MessagePayload.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/MessagePayload.cs Outdated
Comment thread Assets/Scripts/Agents/Messaging/PendingMessage.cs Outdated
@@ -1,36 +1,36 @@
{
"m_Dictionary": {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why did this file change?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Im not sure, this happened before. I am wondering if it is due to Pre-commit?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a way I could quickly ignore this change in git?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

git checkout master -- ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see what you mean - let's leave this for now.

Comment thread Assets/Scripts/Agents/Messaging/PendingMessage.cs Outdated
@Joseph0120 Joseph0120 requested a review from tryuan99 May 10, 2026 22:32
@tryuan99

Copy link
Copy Markdown
Member
image

@Joseph0120 When running the simulator on this branch, do you see this flickering orange cube?

@tryuan99

Copy link
Copy Markdown
Member
image @Joseph0120 When running the simulator on this branch, do you see this flickering orange cube?

Never mind, that's the CVN. Might be worth offseting the CVN a bit as to not overlap with the DDG.

@tryuan99 tryuan99 merged commit 645d003 into master May 11, 2026
18 checks passed
@tryuan99 tryuan99 deleted the joseph/communication_delay_PR1 branch May 11, 2026 03:46
@Joseph0120

Copy link
Copy Markdown
Collaborator Author
image @Joseph0120 When running the simulator on this branch, do you see this flickering orange cube?

It only flickers because the two blocks (orange and blue) were overlapping. Should be normal.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants