aboutsummaryrefslogtreecommitdiffstats
path: root/Assets/Scripts/Core/RopeNoSwing.cs
blob: 84ce1e39e2bd63c61a08ecb3c80f02d67c027ad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.Collections.Generic;
using UnityEngine;

public class RopeNoSwing : Rope
{
    protected new void Update()
    {
        RenderLine();
        Simulate();
    }
}