Esempio n. 1
0
        private PmxGroupMorph ReadPmxGroupMorph()
        {
            var morph = new PmxGroupMorph();

            morph.Index = _reader.ReadVarLenIntAsInt32(MorphElementSize);
            morph.Ratio = _reader.ReadSingle();

            return(morph);
        }
Esempio n. 2
0
 private void WritePmxGroupMorph([NotNull] PmxGroupMorph morph)
 {
     _writer.WriteInt32AsVarLenInt(morph.Index, MorphElementSize);
     _writer.Write(morph.Ratio);
 }