Phenakist
SMSatisfactory Modding
•Created by Phenakist on 11/15/2024 in #help-developing-mods
Build Effect making Decal Material DefaultMaterial
it's a possible fix, currently I have the main material as index 0 and decals as 1
6 replies
SMSatisfactory Modding
•Created by Phenakist on 11/15/2024 in #help-developing-mods
Build Effect making Decal Material DefaultMaterial
Hey thanks for the answers, sorry busy week this week!
No it doesn't with the counter building.
The weird thing is it has and hasn't done it with my previous versions but is seemingly random at when it will happen. I had a working version of this at one point, then it just stopped.
One example I can give is that I had once packaged using alfakit, which booted into the game. it did the default material bug. I closed the game, re opened it, the bug was no longer there; without repackaging or changing the project.
6 replies
SMSatisfactory Modding
•Created by Marcio Neves on 11/17/2024 in #help-developing-mods
Project no longer builds
same, so curious if that is the link
54 replies
SMSatisfactory Modding
•Created by Marcio Neves on 11/17/2024 in #help-developing-mods
Project no longer builds
what version of VS2022 are you guys running, maybe its a VS ver issue instead?
54 replies
SMSatisfactory Modding
•Created by Marcio Neves on 11/17/2024 in #help-developing-mods
Project no longer builds
if it's not the code directly, it might be a mutlithreading issue that's using the __has_feature
54 replies
SMSatisfactory Modding
•Created by Marcio Neves on 11/17/2024 in #help-developing-mods
Project no longer builds
54 replies
SMSatisfactory Modding
•Created by MatthewThe69er on 11/17/2024 in #help-developing-mods
Making a fleshed out, custom map
I've been interested to do this as well, just a big undertaking solo so not started anything
11 replies
SMSatisfactory Modding
•Created by Beef on 11/15/2024 in #help-developing-mods
Moving Meshes at Runtime
let me know how it goes!
25 replies
SMSatisfactory Modding
•Created by Beef on 11/15/2024 in #help-developing-mods
Moving Meshes at Runtime
Looks like you could just take your existing NodeData.Location & PlayerLocation and use that as the same rules to calculate & update on a per tick basis to test functionality
25 replies
SMSatisfactory Modding
•Created by Beef on 11/15/2024 in #help-developing-mods
Moving Meshes at Runtime
Yea I feel like it's got no way of setting other than the initialisation stage. So as an example for a runtime moving platform its this below:
void AMovingPlatform::Tick(float DeltaTime)
{
// Pass to base
Super::Tick(DeltaTime);
FVector location = GetActorLocation();
location += FVector(15 * DeltaTime, 0, 0); // Update location based on DeltaTime
SetActorLocation(location);
}
25 replies
SMSatisfactory Modding
•Created by Beef on 11/15/2024 in #help-developing-mods
Moving Meshes at Runtime
haha thanks, yea hopfully I can help! it's like a semi known language, I can read it and understand whats going on and speak words but I will miss parts of the sentance structure xD
25 replies
SMSatisfactory Modding
•Created by Beef on 11/15/2024 in #help-developing-mods
Moving Meshes at Runtime
ill take a look; my C++ is not that strong, so just trying to help where I can will see if I spot anything! 😄
25 replies
SMSatisfactory Modding
•Created by Beef on 11/15/2024 in #help-developing-mods
Moving Meshes at Runtime
try updating it per game tick to see if it just works at all, if it does work you can then move it to be a called event instead knowing it should fire
25 replies
SMSatisfactory Modding
•Created by Beef on 11/15/2024 in #help-developing-mods
Moving Meshes at Runtime
not touched much C++ for satisfactory atm, so not fully in the know just generally seen a lot of thgeir classes have tick off by default not on
25 replies
SMSatisfactory Modding
•Created by Beef on 11/15/2024 in #help-developing-mods
Moving Meshes at Runtime
transform does the exact same thing, just easier to have in one, less repetition on your end for the same purpose!
I am just thinking if tick is not enabled or it doesnt have an event dispatch equivalent, it will never be enacted to update
25 replies
SMSatisfactory Modding
•Created by Beef on 11/15/2024 in #help-developing-mods
Moving Meshes at Runtime
are you able to send the file so I can take a look?
I assume these are static meshes? there could be an issue if they mesh is set to static instead of moveable or doesn't fire an event post begin play
as a side note, you might be able to use a set transform, which has your loc & rot combined
25 replies