博客
关于我
UE4给flash发送消息
阅读量:337 次
发布时间:2019-03-04

本文共 556 字,大约阅读时间需要 1 分钟。

一、目的

了解如何在UE4中让Flash接收消息。


二、参考

  • MFC和Flash交互及库的使用

    可以使用and库,在UE4中同样适用。

  • UE4 C++与Blueprint调用

    尝试实现调用失败,后续进行优化。

  • 成功案例

    通过代码实现成功。


  • 三、操作

  • 实现UE4与Flash的消息传递

    void AMyHUD::SetSingal2flash(FString _string, int _e, bool _bool) {    // 将FString转换为标准C++字符串    std::string MyStdString(TCHAR_TO_UTF8(*_string));    // 将字符串转换为const char*类型    const char* c = MyStdString.c_str();    // 预定义Flash函数参数    FastFlashArg argv[3] = { c, _e, _bool };    // 调用Flash函数    FastFlashCallFunction(pFlash, "GetUE4Singal", argv, 3);}
  • 优化代码结构

    通过添加注释和代码块使代码更易读。


  • 四、总结

    通过以上方法,成功实现了UE4与Flash之间的消息传递功能。

    转载地址:http://mksq.baihongyu.com/

    你可能感兴趣的文章
    PAT-乙级-1040 有几个PAT
    查看>>
    pat1011. World Cup Betting (20)
    查看>>
    Spring组件扫描配置
    查看>>
    PAT1093 Count PAT's (25)(逻辑题)
    查看>>
    PATA1038题解(需复习)
    查看>>
    Patching Array
    查看>>
    Spring源码学习(二):Spring容器之prepareContext和BeanFactoryPostProcessor的介绍
    查看>>
    PatchMatchStereo可能会需要的Rectification
    查看>>
    Path does not chain with any of the trust anchors
    查看>>
    Path形状获取字符串型变量数据
    查看>>
    PAT甲级——1001 A+B Format (20分)
    查看>>
    Skywalking原理
    查看>>
    PAT甲级——1006 Sign In and Sign Out (25分)
    查看>>
    PAT甲级——1007 Maximum Subsequence Sum (25分)
    查看>>
    PAT甲级——1009 Product of Polynomials (25分)(最后一个测试点段错误)
    查看>>
    Spring对jdbc的支持
    查看>>
    vagrant 的安装
    查看>>
    PayPal网站付款标准版(for PHP)
    查看>>
    Paystack Android SDK 集成与使用指南
    查看>>
    pbf格式详解,javascript加载导出pbf文件示例
    查看>>