Props not spawning after x position is greater then 35000

Please select what you are reporting on:

Creative

What Type of Bug are you experiencing?

Assets

Summary

After reaching a position of 35000 or greater the props spawned with function
SpawnProp(Asset:creative_prop_asset, Position:vector3, Rotation:rotation):tuple(?creative_prop, spawn_prop_result)
Simply won’t spawn anymore?

Steps to Reproduce

Use function SpawnProp(Asset:creative_prop_asset, Position:vector3, Rotation:rotation):tuple(?creative_prop, spawn_prop_result)
at a greater x position of 35000

Expected Result

Able to spawn props

Observed Result

Not able to spawn props even when memory limit is not reached

Platform(s)

PC

@Rodney_Houle Have any thoughts on this since you made a post about this way back?

Hi Gyro,

I wonder if it’s a problem with the tuple (I don’t know how to set up the tuple), I was able to spawn a prop at 40k units with this code:


using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
using { /UnrealEngine.com/Temporary/Diagnostics }
using { /UnrealEngine.com/Temporary/SpatialMath }

spawn_a_prop := class(creative_device):
    @editable MyProp : creative_prop_asset = DefaultCreativePropAsset 

    PosVar : vector3 = vector3 {X:= 40000.0, Y:= 100.0, Z:= 100.0}
    RotVar : rotation = IdentityRotation()
    ScaleVar : vector3 = vector3 {X:= 1.0, Y:= 1.0, Z:= 1.0}

    # Runs when the device is started in a running game
    OnBegin<override>()<suspends>:void=
        SpawnProp(MyProp, transform { Translation := PosVar, Rotation := RotVar, Scale:= ScaleVar})

Hey, so it was a problem with the device limit of 5000! I solved it!

Here is the stage i am at now:
https://x.com/olivier18081252/status/1757165093849117126?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.