[MAJOR] Almost all hidden properties are now disallowed, they have been allowed since UEFN released until 34.30.

It goes against the rules of some platforms to allow executing arbitrary user generated shader code for security reasons.

What we would have to do it create a whole new CustomHLSL system where we provide a sandboxed environment where users could code only against a sanitized API that we maintain, so no direct ‘HLSL’ API calls or constructs. That would be the equivalent to using material nodes, but in text. It would be useful for those wanting to write out their shader logic in code instead of nodes, but it would be restricted in what buffers and functions you could access etc.

This is something being discussed but not on the roadmap for now. What is on the roadmap is to roll out the new HLSL Translator backend that will enable the material editor to become more powerful with strong typing and proper dynamic branching and loops an more. The idea being that users should be able to achieve anything through nodes and rely less on CustomHLSL.

What is it that you’re trying to do with CustomHLSL?

While not directly material related. PCG has scripting nodes with a curated set of APIs that can be called in order to write HLSL based GPU nodes.

This was on the “Forward Looking“ page. I wouldn’t mind to have a higher level verse based abstraction to do this for PCG and for materials to be honest. Additionally having script based materials is often much easier to parse in terms of logic execution than gigantic spaghetti looking node based materials. :man_shrugging:

1 Like

That reasoning makes sense, wasn’t aware of that at all.

I’ve talked about the standard Unreal Engine Water plugin material function “GetWaveData” before but that’s what I was hoping to accomplish here, as it uses Custom nodes to pull info otherwise unavailable through the Material Graph.

You’ve talked about a new water system that’s in the works before, but I really do just wish GetWaveData could be exposed before then so it’s remotely possible to interact with this system for Water, very frustrating not being able to do so. Currently Water bodies default materials in UEFN have completely broken transitions, this was marked as “Won’t Fix” on a bug report not long ago, not having GetWaveData makes it impossible to make equal quality water materials to address these problems ourselves.

1 Like

Is there a reason we dont have nanite fallback mesh support, in UEFN we can set the fallback triangle % but we cant actually have it a different mesh like fortnite does in BR. this limitation is arbitrary and makes me think its an accident because there is a nanite override material option in material instances but right now its useless since we dont have fallbacks

@Kev.EG I would like to re-iterate one thing from the previous requests. Is there any chance you can expose “Is Editor Only“ or is another team in charge of that decision?

In fact, that setting is already partly exposed.

When we create a new prop blueprint there’s an editor only static mesh component. Copying it reveals two settings:

bIsEditorOnly=True
bIsVisualizationComponent=True

Any chance we can get these exposed? bIsVisualizationComponentseems to be restricted to only appear within a actor blueprint and it causes the component not to leak into the details panel when selected in the outliner.

bIsEditorOnly is theoretically available everywhere.

Not sure if this is your field but is it possible to remove the 2k texture limit, im trying to do high quality textures on a map that is performing well and it does not work because of the limit, thanks! :slight_smile:

2 Likes

Epic just (v37.10) added validation support of "/Script/Engine.MaterialExpressionCustom" node for their own use in UEFN based Reload maps. :upside_down_face: That’s not fair.

@Kev.EG while not directly a hidden setting. Why does v37.10 now disallowing NoMipmaps setting?

image

I have a texture that should never be streamed, but that’s already enforced, so I set it to NoMipmaps in order to keep it’s quality. This texture uses all 4 color channels to provided data that’s used to calculate custom 2D clouds. However with this new validation error it significantly reduces the quality of the result as those textures are now forced to dynamically up/down sample.

@Kev.EG would it be possible to get the option to apply different materials using the “Select” tool in the landscape settings? This would be really handy to have. I know epic use this internally, and it works like a charm. We have the select tool currently but there is not much we can do with it.

Hey there @Kev.EG, I filed a bunch of individual reports for the previous requests. Feel free to update those tickets when you or your team make some progress on those.

@Kev.EG Would it be possible to expose the Color Ramp node in UEFN that was added in UE 5.6, it would be easy to make simple gradients with it, will be a lot useful.

You can probs open in ue and copy the material nodes then create your own works on a few things in the interim

is it possible to expose collision settings in landscape streaming proxies since currently the landscape collisions are broken and we cant place porta bunkers on them and they spawn underground, a fix for this is going into ue5 and editing collision on it but we cant copy paste proxies so its useless