Files
Main/Assets/Code/Logic/MsgPrompt/MsgMarqueeInfo.cs

38 lines
721 B
C#
Raw Normal View History

2025-01-25 04:38:09 +08:00
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using Thousandto.Plugins.Common;
namespace Thousandto.Code.Logic
{
/// <summary>
/// 跑马灯的数据信息
/// </summary>
public class MsgMarqueeInfo : MsgInfoBase
{
//播放速度
private float _speed = 100f;
//文字滚动速度
public float Speed
{
get {
return _speed;
}
set {
_speed = value;
}
}
//滚动次数
private int _times;
public int Times
{
get { return _times; }
set { _times = value; }
}
}
}