24 lines
327 B
C#
24 lines
327 B
C#
using UnityEngine;
|
|
|
|
namespace UIWidgets
|
|
{
|
|
public interface ILayoutBridge
|
|
{
|
|
bool IsHorizontal { get; set; }
|
|
|
|
bool UpdateContentSizeFitter { get; set; }
|
|
|
|
void UpdateLayout();
|
|
|
|
void SetFiller(float first, float last);
|
|
|
|
Vector2 GetItemSize();
|
|
|
|
float GetMargin();
|
|
|
|
float GetFullMargin();
|
|
|
|
float GetSpacing();
|
|
}
|
|
}
|