diff --git a/03-UnrealEngine/Gameplay/PuerTS/Puerts(一)——学习资料归纳.md b/03-UnrealEngine/Gameplay/PuerTS/Puerts(一)——学习资料归纳.md index 5b38293..bb3b81d 100644 --- a/03-UnrealEngine/Gameplay/PuerTS/Puerts(一)——学习资料归纳.md +++ b/03-UnrealEngine/Gameplay/PuerTS/Puerts(一)——学习资料归纳.md @@ -12,20 +12,41 @@ https://github.com/Tencent/puerts - [FAQ](https://github.com/Tencent/puerts/blob/master/doc/unreal/zhcn/faq.md) - [更新日志](https://github.com/Tencent/puerts/blob/master/doc/unreal/zhcn/changelog.md) -相关文章&视频: -- [UE引擎里头跑个nodejs服务器是怎样一种体验?](https://zhuanlan.zhihu.com/p/428250631) -- [在你的ios、android应用中嵌入官方版nodejs是什么感觉?](https://zhuanlan.zhihu.com/p/568969543) -- [[UnrealCircle深圳] puerts-UE下TypeScript编程插件 | 腾讯 车雄生](https://www.bilibili.com/video/BV1oB4y1A7dY/?spm_id_from=333.337.search-card.all.click&vd_source=d47c0bb42f9c72fd7d74562185cee290) +## Puerts +- 相关文章&视频: + - [UE引擎里头跑个nodejs服务器是怎样一种体验?](https://zhuanlan.zhihu.com/p/428250631) + - [在你的ios、android应用中嵌入官方版nodejs是什么感觉?](https://zhuanlan.zhihu.com/p/568969543) + - [[UnrealCircle深圳] puerts-UE下TypeScript编程插件 | 腾讯 车雄生](https://www.bilibili.com/video/BV1oB4y1A7dY/?spm_id_from=333.337.search-card.all.click&vd_source=d47c0bb42f9c72fd7d74562185cee290) +- 案例工程: + - https://github.com/chexiongsheng/puerts_unreal_demo +- 知乎文章: + - https://zhuanlan.zhihu.com/p/632862773 + - PuerTS:js调用ue的过程:https://zhuanlan.zhihu.com/p/396751427 + - UE4:PuerTS的js调试相关:https://zhuanlan.zhihu.com/p/406387721 + - 基于Puerts的编辑器UI开发-Mixin的非最佳实践:https://zhuanlan.zhihu.com/p/551338775 -案例工程: -- https://github.com/chexiongsheng/puerts_unreal_demo +## TypeScript +- http://www.patrickzhong.com/TypeScript/zh/tutorials/typescript-in-5-minutes.html +- + +# TypeScript Setup +安装: +```bash +npm install -g typescript +``` + +编译: +```bash +tsc xxx.ts +``` -https://zhuanlan.zhihu.com/p/632862773 -- PuerTS:js调用ue的过程:https://zhuanlan.zhihu.com/p/396751427 -- UE4:PuerTS的js调试相关:https://zhuanlan.zhihu.com/p/406387721 -- 基于Puerts的编辑器UI开发-Mixin的非最佳实践:https://zhuanlan.zhihu.com/p/551338775 +## VSCode中的使用方法 -# UE访问Puerts + +## Debug + +# TypeScript +## UE访问Puerts 通过UDynamicDelegateProxy,其成员记录了绑定的虚拟机与JS函数。 \ No newline at end of file