You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
563 B
C#
27 lines
563 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using System.Collections;
|
|
using System;
|
|
using System.Reflection;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace MoreMountains.Tools
|
|
{
|
|
public class MMPlotterAxis : MonoBehaviour
|
|
{
|
|
public Text Label;
|
|
public Text TimeLabel;
|
|
public Transform PlotterCurvePoint;
|
|
|
|
public Transform PositionPoint;
|
|
public Transform PositionPointVertical;
|
|
public Transform RotationPoint;
|
|
public Transform ScalePoint;
|
|
|
|
public virtual void SetLabel(string newLabel)
|
|
{
|
|
Label.text = newLabel;
|
|
}
|
|
}
|
|
} |