コード例 #1
0
        /// <summary>
        /// Reads out the expression from a BinaryReader.
        /// </summary>
        /// <param name="reader">The BinaryReader to read from.</param>
        public override void Read(AssetBinaryReader reader)
        {
            VirtualFunctionName = reader.XFER_FUNC_NAME();

            Parameters = reader.ReadExpressionArray(EExprToken.EX_EndFunctionParms);
        }
コード例 #2
0
ファイル: EX_BindDelegate.cs プロジェクト: atenfyr/UAssetAPI
 /// <summary>
 /// Reads out the expression from a BinaryReader.
 /// </summary>
 /// <param name="reader">The BinaryReader to read from.</param>
 public override void Read(AssetBinaryReader reader)
 {
     FunctionName = reader.XFER_FUNC_NAME();
     Delegate     = ExpressionSerializer.ReadExpression(reader);
     ObjectTerm   = ExpressionSerializer.ReadExpression(reader);
 }
コード例 #3
0
 /// <summary>
 /// Reads out the expression from a BinaryReader.
 /// </summary>
 /// <param name="reader">The BinaryReader to read from.</param>
 public override void Read(AssetBinaryReader reader)
 {
     FunctionName = reader.XFER_FUNC_NAME();
 }