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.
101 lines
2.6 KiB
C#
101 lines
2.6 KiB
C#
/******************************************************************************/
|
|
/*
|
|
Project - MudBun
|
|
Publisher - Long Bunny Labs
|
|
http://LongBunnyLabs.com
|
|
Author - Ming-Lun "Allen" Chou
|
|
http://AllenChou.net
|
|
*/
|
|
/******************************************************************************/
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using Unity.Collections;
|
|
using UnityEngine;
|
|
|
|
#if MUDBUN_BURST
|
|
using Unity.Burst;
|
|
using Unity.Mathematics;
|
|
using AOT;
|
|
#endif
|
|
|
|
namespace MudBun
|
|
{
|
|
#if MUDBUN_BURST
|
|
[BurstCompile]
|
|
#endif
|
|
public class CustomModifier : MudModifier
|
|
{
|
|
// this value matches kCustomModifier in CustomBrush.cginc
|
|
public static readonly int TypeId = 902;
|
|
|
|
[SerializeField] private float m_thickness = 0.1f;
|
|
public float Thickness { get => m_thickness; set { m_thickness = value; MarkDirty(); } }
|
|
|
|
public override float MaxModification => m_thickness;
|
|
|
|
public override Aabb RawBoundsRs
|
|
{
|
|
get
|
|
{
|
|
Vector3 posRs = PointRs(transform.position);
|
|
Vector3 r = 0.5f * VectorUtil.Abs(transform.localScale) + m_thickness * Vector3.one;
|
|
Aabb bounds = new Aabb(-r, r);
|
|
bounds.Rotate(RotationRs(transform.rotation));
|
|
bounds.Min += posRs;
|
|
bounds.Max += posRs;
|
|
return bounds;
|
|
}
|
|
}
|
|
|
|
public override void SanitizeParameters()
|
|
{
|
|
base.SanitizeParameters();
|
|
|
|
Validate.AtLeast(1e-2f, ref m_thickness);
|
|
}
|
|
|
|
public override int FillComputeData(NativeArray<SdfBrush> aBrush, int iStart, List<Transform> aBone)
|
|
{
|
|
SdfBrush brush = SdfBrush.New();
|
|
brush.Type = TypeId;
|
|
brush.Data0.x = m_thickness;
|
|
aBrush[iStart] = brush;
|
|
|
|
return 1;
|
|
}
|
|
|
|
#if MUDBUN_BURST
|
|
[BurstCompile]
|
|
[MonoPInvokeCallback(typeof(Sdf.SdfBrushEvalFunc))]
|
|
[RegisterSdfBrushEvalFunc(902)]
|
|
public static unsafe float EvaluateSdf(float res, ref float3 p, in float3 pRel, SdfBrush* aBrush, int iBrush)
|
|
{
|
|
float3 h = math.abs(0.5f * aBrush[iBrush].Size);
|
|
float d = Sdf.Box(pRel, h, aBrush[iBrush].Blend);
|
|
if (d > 0.0f)
|
|
return res;
|
|
|
|
float thickness = aBrush[iBrush].Data0.x;
|
|
res = math.abs(res) - thickness;
|
|
return res;
|
|
}
|
|
#endif
|
|
|
|
public override void DrawSelectionGizmosRs()
|
|
{
|
|
base.DrawSelectionGizmosRs();
|
|
|
|
GizmosUtil.DrawInvisibleBox(PointRs(transform.position), transform.localScale, RotationRs(transform.rotation));
|
|
}
|
|
|
|
public override void DrawOutlineGizmosRs()
|
|
{
|
|
base.DrawOutlineGizmosRs();
|
|
|
|
GizmosUtil.DrawWireBox(PointRs(transform.position), transform.localScale, RotationRs(transform.rotation));
|
|
}
|
|
}
|
|
}
|
|
|