Hello, so 256 bits of parameters are not enough when using FaceTracked avatars, but in some cases we need a really small size of Int type (instead of 0-255 range only need 0-7 for example) or not really precise Float type.
Some people already doing custom Int bit count by encoding-decoding through the animator, but it takes lot of time when talking about multiple parameters like that.
The concept of idea is to bring more Integer types:
  • Int8 (0-255): The default one, 8 bits
  • Int7 (0-127): 7 bits
  • Int6 (0-63): 6 bits
  • Int5 (0-31): 5 bits
  • Int4 (0-15): 4 bits
  • Int3 (0-7): 3 bits
  • Int2 (0-3) 2 bits
And same for Float types, which would decrease its precision
It would allow to use more Integer/Float parameters and fit into cap of 256 bits.
I saw other post mentioning same solution but it was in 2021 when it was only 128 bits maximum and it was mentioning only Int, so decided that it would be good to raise that request again with some extra information.