Hey guys working on a Genric Animation controller,
Public Animator anim
Public void GenAnim <t>(string "name", t val)
{
If (t is float)
{
anim.setfloat ("name", val)
}
If (t is bool)
{
anim.settrigger("name", val)
}
If (t is int)
{
anim.setint ("name", val)
}
}
The issue was, you cant pass a t into anim.set functions and i couldn't work out how to cast it or get around it, i feel like there is an easy fix that I'm missing Please let me know if you have any ideas
Cheers
Generics can't really do this in a clean way, but @Rup's suggestion of method overloads would work:
That way calling SetParameter will choose the correct version based on the parameter you provide.
You could also have SetParameter(string name) without a value to call SetTrigger, but there is no GetTrigger (it's ResetTrigger instead). It's up to you how you want to handle that.