Skip to main content
Corvus Connection

Tint your avatar when a viewer cheers

Basic
When a viewer cheers, flush the whole VTube Studio model a bright color.
On CheeroutdisplayNamebitsmessageisAnonymousNumbervalueNumbervalueNumbervalueNumbervalueVTuber: Color TintinrgbaoutReturnin
Graph structure (text alternative)

Trigger: onCheer

Nodes:

  • On Cheer (entry.onCheer)
  • Number (data.literal.int)
  • Number (data.literal.int)
  • Number (data.literal.int)
  • Number (data.literal.int)
  • VTuber: Color Tint (vtuber.colorTint)
  • Return (flow.return)

Connections:

  • On Cheer.out → VTuber: Color Tint.in
  • Number.value → VTuber: Color Tint.r
  • Number.value → VTuber: Color Tint.g
  • Number.value → VTuber: Color Tint.b
  • Number.value → VTuber: Color Tint.a
  • VTuber: Color Tint.out → Return.in

Walkthrough

Flush your avatar a bright color whenever a viewer cheers.

How it works

  1. On Cheer fires when a viewer cheers.
  2. VTuber: Color Tint tints the whole current model with an RGBA color: here hot pink (255, 105, 180, 255).

The four Number literals feed the red, green, blue, and alpha channels (0–255). Change them for a different color, or lower alpha for a subtler wash. To make the tint fade back, follow up with a delay and a second Color Tint back to white (255, 255, 255, 255).

The VTuber node is a no-op when VTube Studio isn't connected, so the flow is safe to leave enabled. Start from On Cheer and VTuber: Color Tint.

Uses these nodes