Files
Continentis/Assets/OtherPlugins/Feel/NiceVibrations/Demo/DemoAssets/BallDemo/Scripts/BallDemoManager.cs
SoulliesOfficial 61a397dd4c MOD!
2025-10-23 00:49:44 -04:00

24 lines
465 B
C#

// Copyright (c) Meta Platforms, Inc. and affiliates.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace Lofelt.NiceVibrations
{
public class BallDemoManager : DemoManager
{
[Header("Ball")]
public Vector2 Gravity = new Vector2(0, -30f);
protected virtual void Start()
{
#if MM_PHYSICS2D
Physics2D.gravity = Gravity;
#endif
}
}
}