is there a way to clear console text without clearing the raycast graphics?
ex: when i do cls (it enters cls when i close the console) but every time do the screen gets cleared except the for the gun
sprite
please help
Set the console's background drawing color to transparent before calling CLS. This will remove the console text's black background, therefore not covering up other visuals. Make sure to set it to black when you want to clearly display console text again.
You can set it to transparent like this...
COLOR #TWHITE,0
...and set it back to black like this...
COLOR #TWHITE,#TBLACK