LogoLogo
  • 📘Arcane Mirage Documentation
  • 🚂Quick Start Guide
    • 1. Register and Sign In
    • 2. Prepare Your Unreal Engine Project - Choose your platform
      • 🐧Prepare your Unreal Engine project for Linux
      • 🪟Prepare your Unreal Engine project for Windows
    • 3. Upload your project
    • 4. Share your project
  • Subscriptions & Tokens
    • Subscriptions Plans
      • Free Trial
      • Pixel Artificer - Basic
      • Reality Weaver - Pro
      • Engine Overlord - Pro+
      • Multiverse Exemplar - Enterprise
    • Subscription Features
    • Tokens
  • 🖥️Unreal Engine Setup & Support
    • UE and Pixel Streaming recommendations
    • Adapting your project for Mobile
    • Known Issues in Linux
  • Uploading
    • Uploading
      • Uploading and managing new versions
    • Dedicated Machines
  • Sharing & Embedding
    • Sharing
      • Private Links
    • Embedding to your Website
      • Embedding on WIX
    • Messages to the front-end from Unreal Engine
    • Analytics
  • Project Settings & Configurations
    • General Projects Settings
      • General Settings
      • Description Settings
      • Project Config Settings
      • Session Config Settings
      • Performance Settings
      • Embedding Settings
  • Version Control
  • Advanced Integrations
    • API Access
    • Using Conv AI & Arcane Mirage
    • Using Inworld AI & Arcane Mirage
    • About Multiplayer
  • Accounts & Payments
    • Payments
    • Updating your payment information
  • ❓FAQs
    • General FAQ
    • Unreal Engine Frequently Asked Questions (FAQ)
      • Project upload succesfully to the platform but it disconnects when launching experience
      • My project is not compiling correctly. What could be wrong?
      • Which version of Unreal Engine do we support?
      • Does Lumen and Nanite work in Pixel-Streaming?
      • My mouse is captured by the experience but I can't see the cursor in game
      • How to use Media Textures in Arcane Mirage
      • How to make microphone input work for Pixel Streaming
      • Tips to Optimize your Unreal Engine Projects
      • Can i use the Pixel Streaming 2 plugin?
    • Access our templates through Github
    • How can I rebuild my project?
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. FAQs
  2. Unreal Engine Frequently Asked Questions (FAQ)

My project is not compiling correctly. What could be wrong?

Ah, the complexities of compiling. It could be a few things:

  • Linux Compatibility: Some plugins might not play nicely with Linux, leading to a compilation hiccup. You can try add "Linux" as a compatible platform inside the plugin's folder. Locate the '.uplugin' file, it opens with any text editor and add "Linux" as an allowed platform. This may solve the issue but it's not guaranteed since it depends on the plugin's features.

{
//some code
	"Modules": [
		{
			"Name": "Plugin_Name",
			"Type": "Runtime",
			"LoadingPhase": "Default",
			"PlatformAllowList": [
				"Win64",
				"Mac",
				"IOS",
				"Android",
				
			]
		}
	]
}
  • Toolchain Troubles: If you don't have the correct version of the cross-compile toolchain, it could throw a wrench in the works.

  • Missing Linux Binaries: Seeing "The binaries for this target platform are not currently installed"? You'll need to download Linux binaries from the Epic Games launcher.

  • Blueprint or Code Issues: A pesky compilation error might be lurking in your blueprint or code.

  • Other Mysteries: There's a vast world of possibilities out there. If you're still stumped, the Unreal Engine documentation, forums, and other resources are rich with insights.

PreviousProject upload succesfully to the platform but it disconnects when launching experienceNextWhich version of Unreal Engine do we support?

Last updated 1 year ago

Was this helpful?

❓