Func detail illusionary: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
(Add FGD code)
Line 4: Line 4:
{{codenote|See [https://github.com/ValveSoftware/source-sdk-2013/pull/1323 this PR] for how to add this entity to the SDK version of VBSP.}}
{{codenote|See [https://github.com/ValveSoftware/source-sdk-2013/pull/1323 this PR] for how to add this entity to the SDK version of VBSP.}}
{{otherKIO|func_detail|All}}
{{otherKIO|func_detail|All}}
== FGD Code ==
<syntaxhighlight lang=js>
@SolidClass base(DXLevelChoice) color(0 180 0) = func_detail_illusionary :
"Similar to func_detail, but non-solid."
[
vbsp_nobevel(boolean) : "No Bevel" : "0" : "If set, bevel faces aren't emitted on angled geometry. This reduces brushsides at the cost of less accurate collision on corners."
]
</syntaxhighlight>

Revision as of 07:29, 7 November 2025

Stub

This article or section is a stub. You can help by expanding it.

func_detail_illusionary is an internal brush entity available in VBSP++ VBSP++. A non-solid version of func_detail.

Cpp.pngCode:See this PR for how to add this entity to the SDK version of VBSP.
Note.pngNote:All Keyvalues / Inputs / Outputs are same as func_detail.

FGD Code

@SolidClass base(DXLevelChoice) color(0 180 0) = func_detail_illusionary : 
	"Similar to func_detail, but non-solid."
[
	vbsp_nobevel(boolean) : "No Bevel" : "0" : "If set, bevel faces aren't emitted on angled geometry. This reduces brushsides at the cost of less accurate collision on corners."
]