SetPublic - Cell
Jump to navigation
Jump to search
Member of: Cell Script
Sets this cell as public or private.
Syntax[edit | edit source]
Function SetPublic(bool abPublic = True) native
Parameters[edit | edit source]
- abPublic: If true, set the cell to public, otherwise, set it private.
- Default: True
Return Value[edit | edit source]
None.
Examples[edit | edit source]
; Set the grocery store as public
GroceryStoreProperty.SetPublic()
; Set the back room as private
BackRoomProperty.SetPublic(false)