zoukankan      html  css  js  c++  java
  • UE4——找不到"UnLuaInterface.h"

    菜鸟级错误。

    如果你要引用插件中的头文件,那么一定需要在UE4项目名.build.cs中这里添加上插件名字:

    using UnrealBuildTool;
    
    public class 项目名 : ModuleRules
    {
    	public 项目名(ReadOnlyTargetRules Target) : base(Target)
    	{
    		PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
    		// 这里添加上插件名字,如果找不到标题中的头文件,要在这里加上"UnLua"
    		PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "WebSockets", "UnLua"});
    
    		PrivateDependencyModuleNames.AddRange(new string[] {  });
    
    		// Uncomment if you are using Slate UI
    		// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
    		
    		// Uncomment if you are using online features
    		// PrivateDependencyModuleNames.Add("OnlineSubsystem");
    
    		// To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
    	}
    }
    
    

    添加之后重新生成项目或者刷新项目即可。

    本博客文章默认使用CC BY-SA 3.0协议。
  • 相关阅读:
    03 获取元素节点对象的方式
    02 window对象的常用方法
    01 BOM对象介绍
    10 for循环介绍和应用
    09 三元运算
    序列化pickle
    随机数random模块
    datetime模块时间运算
    time模块细讲
    时间处理模块
  • 原文地址:https://www.cnblogs.com/yejianying/p/UE4_UnLuaInterface_header_not_found.html
Copyright © 2011-2022 走看看