24 lines
605 B
C#
24 lines
605 B
C#
using RootMotion.FinalIK;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
public class Rod : MonoBehaviour
|
|
{
|
|
public GameObject rod;
|
|
|
|
public Transform Bait; // 鱼饵的位置
|
|
public Transform TopLine; // 钓鱼竿的顶部位置
|
|
public Transform EndLine;
|
|
public Transform Rod_Joint;
|
|
public List<Transform> LineList;
|
|
public Transform LineHole;
|
|
|
|
public LineRenderer fishingLineRenderer;
|
|
public CCDIK cCDIK;
|
|
|
|
public Transform LeftHandTargets;
|
|
public Transform RightHandTargets;
|
|
public Transform BodyTargets;
|
|
public TMP_Text lineLength;
|
|
} |