-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMiidataMs.js
72 lines (69 loc) · 2.6 KB
/
MiidataMs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// This is a generated file! Please edit source .ksy file and use kaitai-struct-compiler to rebuild
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define(['kaitai-struct/KaitaiStream'], factory);
} else if (typeof module === 'object' && module.exports) {
module.exports = factory(require('kaitai-struct/KaitaiStream'));
} else {
root.MiidataMs = factory(root.KaitaiStream);
}
}(this, function (KaitaiStream) {
var MiidataMs = (function() {
function MiidataMs(_io, _parent, _root) {
this._io = _io;
this._parent = _parent;
this._root = _root || this;
this._read();
}
MiidataMs.prototype._read = function() {
this.facialHairColor = this._io.readU1();
this.beardGoatee = this._io.readU1();
this.bodyWeight = this._io.readU1();
this.eyeStretch = this._io.readU1();
this.eyeColor = this._io.readU1();
this.eyeRotation = this._io.readU1();
this.eyeSize = this._io.readU1();
this.eyeType = this._io.readU1();
this.eyeHorizontal = this._io.readU1();
this.eyeVertical = this._io.readU1();
this.eyebrowStretch = this._io.readU1();
this.eyebrowColor = this._io.readU1();
this.eyebrowRotation = this._io.readU1();
this.eyebrowSize = this._io.readU1();
this.eyebrowType = this._io.readU1();
this.eyebrowHorizontal = this._io.readU1();
this.eyebrowVertical = this._io.readU1();
this.faceColor = this._io.readU1();
this.faceMakeup = this._io.readU1();
this.faceType = this._io.readU1();
this.faceWrinkles = this._io.readU1();
this.favoriteColor = this._io.readU1();
this.gender = this._io.readU1();
this.glassesColor = this._io.readU1();
this.glassesSize = this._io.readU1();
this.glassesType = this._io.readU1();
this.glassesVertical = this._io.readU1();
this.hairColor = this._io.readU1();
this.hairFlip = this._io.readU1();
this.hairType = this._io.readU1();
this.bodyHeight = this._io.readU1();
this.moleSize = this._io.readU1();
this.moleEnable = this._io.readU1();
this.moleHorizontal = this._io.readU1();
this.moleVertical = this._io.readU1();
this.mouthStretch = this._io.readU1();
this.mouthColor = this._io.readU1();
this.mouthSize = this._io.readU1();
this.mouthType = this._io.readU1();
this.mouthVertical = this._io.readU1();
this.beardSize = this._io.readU1();
this.beardMustache = this._io.readU1();
this.beardVertical = this._io.readU1();
this.noseSize = this._io.readU1();
this.noseType = this._io.readU1();
this.noseVertical = this._io.readU1();
}
return MiidataMs;
})();
return MiidataMs;
}));