本文整理汇总了C#中EndianBinaryReader.ReadFx32s方法的典型用法代码示例。如果您正苦于以下问题:C# EndianBinaryReader.ReadFx32s方法的具体用法?C# EndianBinaryReader.ReadFx32s怎么用?C# EndianBinaryReader.ReadFx32s使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EndianBinaryReader
的用法示例。
在下文中一共展示了EndianBinaryReader.ReadFx32s方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Material
public Material(EndianBinaryReader er)
{
itemTag = er.ReadUInt16();
size = er.ReadUInt16();
diffAmb = er.ReadUInt32();
specEmi = er.ReadUInt32();
polyAttr = er.ReadUInt32();
polyAttrMask = er.ReadUInt32();
texImageParam = er.ReadUInt32();
texImageParamMask = er.ReadUInt32();
texPlttBase = er.ReadUInt16();
flag = (NNS_G3D_MATFLAG)er.ReadUInt16();
origWidth = er.ReadUInt16();
origHeight = er.ReadUInt16();
magW = er.ReadFx32();
magH = er.ReadFx32();
if ((flag & NNS_G3D_MATFLAG.NNS_G3D_MATFLAG_TEXMTX_SCALEONE) == 0)
{
scaleS = er.ReadFx32();
scaleT = er.ReadFx32();
}
if ((flag & NNS_G3D_MATFLAG.NNS_G3D_MATFLAG_TEXMTX_ROTZERO) == 0)
{
rotSin = er.ReadFx16();
rotCos = er.ReadFx16();
}
if ((flag & NNS_G3D_MATFLAG.NNS_G3D_MATFLAG_TEXMTX_TRANSZERO) == 0)
{
transS = er.ReadFx32();
transT = er.ReadFx32();
}
if ((flag & NNS_G3D_MATFLAG.NNS_G3D_MATFLAG_EFFECTMTX) == NNS_G3D_MATFLAG.NNS_G3D_MATFLAG_EFFECTMTX)
{
effectMtx = er.ReadFx32s(16);
}
}