资源简介

LeapMotion在UE4上的插件源码,Leap motion通过该插件操作UE4中的场景模型

资源截图

代码片段和文件信息

// Copyright 1998-2014 Epic Games Inc. All Rights Reserved.

using System.IO;

namespace UnrealBuildTool.Rules
{
public class LeapMotion : ModuleRules
{
public LeapMotion(TargetInfo Target)
{
PublicIncludePaths.AddRange(
new string[] {
“LeapMotion/Public“
// ... add public include paths required here ...
}
);

PrivateIncludePaths.AddRange(
new string[] {
“LeapMotion/Private“
// ... add other private include paths required here ...
}
);

PublicDependencyModuleNames.AddRange(
new string[]
{
“Engine“
“Core“
                    “CoreUobject“
// ... add other public dependencies that you statically link with here ...
}
);

PrivateDependencyModuleNames.AddRange(
new string[]
{
// ... add private dependencies that you statically link with here ...
}
);

DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
            PublicAdditionalLibraries.Add(“Leap.lib“);
}
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-05-29 22:06  UE4-LeapMotionPlugin-master\
     文件         171  2014-05-29 22:06  UE4-LeapMotionPlugin-master\.gitignore
     文件        1077  2014-05-29 22:06  UE4-LeapMotionPlugin-master\LICENSE
     文件         402  2014-05-29 22:06  UE4-LeapMotionPlugin-master\LeapMotion.uplugin
     文件        1847  2014-05-29 22:06  UE4-LeapMotionPlugin-master\README.md
     目录           0  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Resources\
     文件        4498  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Resources\Icon128.png
     目录           0  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\
     目录           0  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\
     文件        1090  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\LeapMotion.Build.cs
     目录           0  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\
     文件        1783  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\Bone.cpp
     文件        2131  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\Bone.h
     文件         193  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\FLeapMotion.cpp
     文件         383  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\FLeapMotion.h
     文件        2794  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\Finger.cpp
     文件         942  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\Finger.h
     文件        1591  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\FingerList.cpp
     文件        1592  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\FingerList.h
     文件        4325  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\Hand.cpp
     文件        5130  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\Hand.h
     文件         985  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\HandList.cpp
     文件        1248  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\HandList.h
     目录           0  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\LEAP\
     文件      158729  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\LEAP\Leap.h
     文件       28916  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\LEAP\Leap.i
     文件       28543  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\LEAP\LeapMath.h
     文件        1109  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\LeapController.cpp
     文件        1164  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\LeapController.h
     文件         649  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\Leapframe.cpp
     文件         708  2014-05-29 22:06  UE4-LeapMotionPlugin-master\Source\LeapMotion\Private\Leapframe.h
............此处省略13个文件信息

评论

共有 条评论