2024-03-05 17:34:41 +08:00
|
|
|
#if GRIFFIN
|
2023-12-30 17:37:48 +08:00
|
|
|
using UnityEngine;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Pinwheel.Griffin.PaintTool
|
|
|
|
{
|
|
|
|
public struct GTexturePainterArgs
|
|
|
|
{
|
|
|
|
public Vector3 HitPoint { get; set; }
|
|
|
|
public Vector3[] WorldPointCorners { get; set; }
|
|
|
|
public Texture BrushMask { get; set; }
|
|
|
|
public float Radius { get; set; }
|
|
|
|
public float Rotation { get; set; }
|
|
|
|
public float Opacity { get; set; }
|
|
|
|
public Color Color { get; set; }
|
|
|
|
public int SplatIndex { get; set; }
|
|
|
|
public Vector3 SamplePoint { get; set; }
|
|
|
|
public string CustomArgs { get; set; }
|
|
|
|
public GPainterMouseEventType MouseEventType { get; set; }
|
|
|
|
public GPainterActionType ActionType { get; set; }
|
|
|
|
public bool ForceUpdateGeometry { get; set; }
|
|
|
|
public bool EnableTerrainMask { get; set; }
|
2024-03-05 17:34:41 +08:00
|
|
|
public GConditionalPaintingConfigs ConditionalPaintingConfigs { get; set; }
|
2023-12-30 17:37:48 +08:00
|
|
|
}
|
|
|
|
}
|
2024-03-05 17:34:41 +08:00
|
|
|
#endif
|