Add animation stub and effect stub for skin.

This commit is contained in:
2023-02-15 18:12:41 +08:00
parent b6e238780e
commit eb6dafbd60
6 changed files with 118 additions and 6 deletions

View File

@@ -43,6 +43,7 @@ namespace Cryville.Crtr {
buf[0] = _cb() ? (byte)1 : (byte)0;
}
}
public static readonly PropSrc Error = new Arbitrary(PdtInternalType.Error, new byte[0]);
public class Float : FixedBuffer {
readonly Func<float> _cb;
public Float(Func<float> cb) : base(PdtInternalType.Number, 4) { _cb = cb; }