b3dHideEntity

Makes entity invisible (sets visible=false, skips rendering). Takes entity (entity handle). Returns nothing.

3D Graphics

Parameters & Returns

Parameters

entity Int

Returns

Void

Quick Summary

Makes entity invisible (sets visible=false, skips rendering). Takes entity (entity handle). Returns nothing.

Technical Exegesis...

Makes entity invisible (sets visible=false, skips rendering). Takes entity (entity handle). Returns nothing. Validates entity exists, sets entity.visible=false. Entity skipped during rendering (not drawn). Opposite of b3dShowEntity.

This function disables entity rendering. Visibility flag: visible=false entities excluded from render list, not drawn to screen, no GPU rendering cost.

Example

Example.bam
; No example implemented yet