- Moved video screen into its own separate movie tent. - Adjusted stable post-processing volume. - Chickens are now at full volume. - Added button to toggle chickens off and on.
19 lines
478 B
C#
19 lines
478 B
C#
using UdonSharp;
|
|
|
|
namespace VRCBilliardsCE.Packages.com.vrcbilliards.vrcbce.Runtime.Scripts
|
|
{
|
|
/// <summary>
|
|
/// Handles the green icon that indicates the pool cue can be moved.
|
|
/// </summary>
|
|
|
|
[UdonBehaviourSyncMode(BehaviourSyncMode.None)]
|
|
public class PoolPositioner : UdonSharpBehaviour
|
|
{
|
|
public PoolStateManager gameStateManager;
|
|
|
|
public override void OnDrop()
|
|
{
|
|
gameStateManager.PlaceBall();
|
|
}
|
|
}
|
|
} |