-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the latest master not working in UE4.24 (Add warnings for missing dependencies) #17
Comments
You're missing dependencies:
Both of these steps are handled for you if you use the correct releases, but if you're using git, you'll need to manually ensure those two things are done before it all works. That said this shouldn't crash without a hint though, so I'm marking this as an enhancement to add a warning when you're missing the dependency. |
Hi. With the node executable in place, Unreal editor doesn't crash anymore (but I ran into another issue - #18). As for this one, is this step (copying the ThirdParty folder with node excutbale) documented somewhere? |
Added https://github.com/getnamo/nodejs-ue4/blob/master/README.md#using-git-instead-of-releases readme section with link to the third party dependencies here: https://github.com/getnamo/nodejs-ue4/releases/download/0.5.0/nodejs-v0.5.0git-thirdparty-dependencies-only.7z That should make using the plugin with a fresh git pull a bit simpler. |
Shouldn't the step 2 (Go to nodejs-ue4/content/scripts and run |
The node_modules are included in the zip, so no npm i should be required when using that zip (untested though) |
After pulling the latest version from master, the plugin doesn't work in UE 4.24.
Opening the project and compiling the modules works OK (after I made the changes to include paths). But if I add an actor with the Node component and run the project, UE just crashes.
Steps to reproduce:
After the last step the editor just crashes without showing the usual UE crash report window. This is the UE log after clicking the Play button:
[2020.04.25-06.38.55:629][257]LogUObjectGlobals: Warning: Failed to find object 'Class None.SIOJJsonObject'
[2020.04.25-06.38.55:629][257]LogUObjectGlobals: Warning: Failed to find object 'Class None.SIOJJsonObject'
[2020.04.25-06.38.56:848][330]LogTemp: Repeating last play command: New Editor Window (PIE)
[2020.04.25-06.38.56:860][330]LogPlayLevel: PlayLevel: No blueprints needed recompiling
[2020.04.25-06.38.56:860][330]PIE: New page: PIE session: Main (25. tra 2020. 10:38:56)
[2020.04.25-06.38.56:862][330]LogOnline: OSS: Creating online subsystem instance for: NULL
[2020.04.25-06.38.56:863][330]LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for module [NULL]
[2020.04.25-06.38.56:863][330]LogPlayLevel: Creating play world package: /Game/UEDPIE_0_Main
[2020.04.25-06.38.56:866][330]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002297s)
[2020.04.25-06.38.56:867][330]LogAIModule: Creating AISystem for world Main
[2020.04.25-06.38.56:867][330]LogPlayLevel: PIE: World Init took: (0.001695s)
[2020.04.25-06.38.56:868][330]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Main.Main to /Game/UEDPIE_0_Main.Main (0.004313s)
[2020.04.25-06.38.56:934][330]LogUObjectHash: Compacting FUObjectHashTables data took 5.56ms
[2020.04.25-06.38.56:935][330]LogAudioMixer: Display: Audio Mixer Platform Settings:
[2020.04.25-06.38.56:935][330]LogAudioMixer: Display: Sample Rate: 48000
[2020.04.25-06.38.56:935][330]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024
[2020.04.25-06.38.56:935][330]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024
[2020.04.25-06.38.56:935][330]LogAudioMixer: Display: Number of buffers to queue: 2
[2020.04.25-06.38.56:935][330]LogAudioMixer: Display: Max Channels (voices): 32
[2020.04.25-06.38.56:935][330]LogAudioMixer: Display: Number of Async Source Workers: 0
[2020.04.25-06.38.56:935][330]LogAudio: Display: AudioDevice MaxSources: 32
[2020.04.25-06.38.56:936][330]LogAudio: Display: Using built-in audio occlusion.
[2020.04.25-06.38.56:936][330]LogAudioMixer: Display: Initializing audio mixer.
[2020.04.25-06.38.56:966][330]LogAudioMixer: Display: Audio Device Output Speaker Info:
[2020.04.25-06.38.56:966][330]LogAudioMixer: Display: Name: Speaker/Headphone (Realtek(R) Audio)
[2020.04.25-06.38.56:966][330]LogAudioMixer: Display: Is Default: Yes
[2020.04.25-06.38.56:966][330]LogAudioMixer: Display: Sample Rate: 48000
[2020.04.25-06.38.56:966][330]LogAudioMixer: Display: Channel Count Used: 2
[2020.04.25-06.38.56:966][330]LogAudioMixer: Display: Device Channel Count: 2
[2020.04.25-06.38.56:966][330]LogAudioMixer: Display: Channel Order:
[2020.04.25-06.38.56:966][330]LogAudioMixer: Display: 0: FrontLeft
[2020.04.25-06.38.56:966][330]LogAudioMixer: Display: 1: FrontRight
I have tried turning off "Run Default Script On begin Play" for the Node component, it didn't help.
Here's an example project (with plugin binaries already compiled):
https://drive.google.com/file/d/1PrYO3wH99_wV5L1-MbtZdHy5EoyXjtv3/view?usp=sharing
The text was updated successfully, but these errors were encountered: