@EPIC Old UDK forum content has been removed! Please help!

No, those are read-only legacy forums.

On a side note, for around a month now I’ve been locked out from posting new threads on this forum. Whenever I try to post I get the error: “You are not permitted to view the requested resource”.

@Amanda.Schade was going to help resolve the problem, but I have not heard back. Some help would be very much appreciated :pray:

I read you let’s see if we have good luck, the UE3 devs…

I think its down again as its giving me a blank page.Can anyone confirm as I updated firefox a few days ago and not sure if its that ?

Cheers

Looks like they got it back.Faster than I was expecting !

@Amanda.Schade I am still not able to create new posts on the forum (only reply to existing ones).

I always get this error when trying to post: “You are not permitted to view the requested resource”:

Please could you help, as I have participated in these forums for nearly 10 years.

I am getting the same message when trying to post a thread.

I’ve posted on the main UE forum about this issue just now: @EPIC Legacy UDK Forum is currently broken

Please help amplify this thread, so that hopefully Epic will see it and fix the problem with this legacy forum.

1 Like

Cross-posting for additional visibility :slight_smile:

In UDK you can change the resolution you can change probably a lot of stuff, but what if you want to change the overall?
If you cannot please tell me the features that most performance take how to make the shader look like crap to then have the best performance to then have an army on Gladiators of the arena of 500 soldiers…

Posting this here as where to post else?

Run the gameplay profiler UDK | GameplayProfiler to see what is taking the most time. It might be the AIControllers running every tick.

My game Himeko Sutori runs fine with 400 pawns in each battle, but my game is turn-based, and you never have more than 20 pawns active at any time, so I only need 20 AIControllers. The 20 AIControllers possess different pawns when it’s time for those pawns to act.

If you don’t actually need 500 gladiators working as fully capable bots, then maybe you should look into crowds UDK | CrowdSystem or some kind of simple actor that has a skeletal mesh component.

What about crowds was broken, can you elaborate? Just out of interest, I don’t use the system myself.

@SkyeEden The UDK forum is still broken and will not allow new posts. Please can we have an update on the status? This has been a long time now, and it’s a big hinderance on active UDK projects.

Thanks

Mmmmh ok I will try the game profiler if i find it, thanks to all for your support.

I guess that yes some stuff is not perfectly coded in Udk but, at least we can have 500 pawns, in ue4 in a hardcore laptop just barely 50-70 that is like going backwards in my opinion.

Peace that is just an opinion.

Light function disables when camera zooms out
Hey everyone, I have a dominant directional light movable that represents the sun. I can give it a light function that places cloud shadows on the ground. It’s all working fine, except that when my camera zooms out about 6000 uu from the character (my game has an overhead camera), the light function suddenly stops working. All other shadows and lighting from the light continue to work. Just the light function stops working. Anyone know why this is happening and what I could change to keep the light function working?

Edit: Well, this is strange. It’s not exactly tied directly to the camera’s distance or FOV so far as I can tell. I tried changing my camera’s maximum zoom-out distance and FOV (I change FOV to make the camera more isometric-looking at maximum zoom-out), and the light function stops working at about 90% of maximum distance whether the distance is 10,000 or 3,500 away. So for now my workaround is stopping at 80% of maximum zoom-out. Maybe it has to do with DOF, clipping, FOV, distance, or some combination of them.

@Nathaniel3W I also had this problem. I use a light function on my sun (directional dominant light) to display water caustics while the player is swimming under water.

It turns out if the TraceDistance is too far then the effects of the light function are omitted (could be a number of reasons for this). I got around this by simply updating the TraceDistance when the pawn’s head goes underwater:

//-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
//Show the caustic ripples underwater.
//-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
simulated function ShowUnderwaterLight()
{
	DirectionalLightComponent(LightComponent).TraceDistance=100000;
	LightComponent.SetLightProperties(,, UnderwaterLightFunction);

	LightComponent.UpdateColorAndBrightness();
        LightComponent.UpdateLightShaftParameters();
}
//-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
//Disable the caustic ripples underwater.
//-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
simulated function DisableUnderwaterLight()
{
   DirectionalLightComponent(LightComponent).TraceDistance=1000000000.000000;
   LightComponent.SetLightProperties(,, none);

    LightComponent.UpdateColorAndBrightness();
    LightComponent.UpdateLightShaftParameters();
}

If I remember correctly, leaving the trace distance low all the time caused issue with alignment of the sun disc in sky sphere material. Or there were some other problems, i forget (it’s been a while). So i left this solution in place, which has been fine over the long-term.

Not sure if this helps, but thought I’d chime in.

1 Like

Hey @Coldscooter

We’ve enabled the creation of new posts in the UDK sections of the forums. We’ll continue to clean up at the same time. Please note new posts require the UDK tag in these sections.

Thank you for being patient; I hope it wasn’t too inconvenient.

Thanks!

2 Likes

Thanks so much for getting this resolved @SkyeEden. It is much appreciated :pray:

1 Like

What about the old forums ? It would be so cool to post there.

Well, once again, as soon as we’re allowed to post here again, everyone starts spamming the UDK section with unrelated non-UDK questions. That sucks. But if given the choice between non-UDK posts and locking the UDK section, I’ll take the non-UDK posts.

I came here because of the search engine, all I want to do is post in general and I get “You are not permitted to view the requested resource.” as many have here, has anybody found how to fix this?