MassMotion sdk的使用

2020-05-06

直接用VS

以MassMotion sdk 官方examples为例
(sdk下载好后在安装文件夹下有一个examples文件夹)

  • You will need to copy MassMotion.dll from the cs subdirectory of the MassMotion SDK install directory to the directory of whatever script or program you are running, and reference this DLL from your C# project.

  • VS从已有文件新建项目, 选官方examples

image
  • 添加引用MassMotion.dll
image
  • VS 打开命令行
image
  • 在命令行输入命令以运行程序:
csc.exe /r:MassMotion.dll /t:exe SdkExample.cs
SdkExample.exe

会弹出liecense对话框,然后控制台会显示一些内容。还会输出一个文件:

image

运行SdkExample.exe,成功的话会生成一个mmdb文件(MassMotionDatabase)

Unity中

似乎直接把dll和脚本放在同一路径下就行
看网上说把dll放在Assets\plugins目录下就行,若无就自行创建。

你可能感兴趣的:(MassMotion sdk的使用)