【unity造轮子】实现类似愤怒的小鸟,弹弓效果

using UnityEngine;
public class Slingshot : MonoBehaviour
{
   
    
    
    public float maxStretch = 3.0f; // 弹弓最大拉伸距离
    public LineRenderer catapultLineFront; // 弹弓前线渲染器
    

猜你喜欢

转载自blog.csdn.net/qq_36303853/article/details/130428101