• 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协议。
  • 相关阅读:
    Leetcode: Palindrome Permutation
    Leetcode: Ugly Number
    Leetcode: Ugly Number II
    Leetcode: Single Number III
    Leetcode: 3Sum Smaller
    Leetcode: Factor Combinations
    Leetcode: Different Ways to Add Parentheses
    Leetcode: Add Digits
    GigE IP地址配置
    Ubuntu 关闭触摸板
  • 原文地址:https://www.cnblogs.com/yejianying/p/UE4_UnLuaInterface_header_not_found.html
Copyright © 2020-2023  润新知