Menu
Basic operation
Public Rooms
Download VirtualCast
Create Account
Integration[Steam]
Blendshape
Swingable
Create the first VCI
What is possible with VCI
List of VCI examples
VCI Script Reference
Material
Change the UV offset of the texture every frame
local u = 0 function update() u = u + 0.05 u = u%1.0 vci.assets._ALL_SetMaterialTextureOffsetFromIndex(0,Vector2.__new(u,0)) end