17 lines
		
	
	
		
			375 B
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			375 B
		
	
	
	
		
			C#
		
	
	
	
|  | using System.Collections; | |||
|  | using System.Collections.Generic; | |||
|  | using UnityEngine; | |||
|  | 
 | |||
|  | namespace MMO | |||
|  | { | |||
|  |     public class MMOUIWaiting : MMOUIBase | |||
|  |     { | |||
|  |         [SerializeField] float mRotateSpeed; | |||
|  |         [SerializeField] Transform mTsfLoading; | |||
|  | 
 | |||
|  |         private void Update() | |||
|  |         { | |||
|  |             mTsfLoading.Rotate(0, 0, mRotateSpeed * Time.unscaledDeltaTime); | |||
|  |         } | |||
|  |     } | |||
|  | } |