Added docs and project management tool update

This commit is contained in:
n00b
2024-10-06 01:39:47 -04:00
parent 00309fa481
commit 641c5c86ca
1544 changed files with 10572 additions and 2904 deletions

View File

@@ -0,0 +1,15 @@
#title ActorIsSolid [RCBasic Doc]
#header function ActorIsSolid(actor)
Returns true or false depending on if physics and collision response applies to an actor.
Note: Collision is still able to be checked on an actor but the actor will be like a ghost able to go through wall and other objects.
#code
SetActorSolid(actor, true)
Print "Actor solid state: "; ActorIsSolid(actor) 'This will output 1
SetActorSolid(actor, false)
Print "Actor solid state: "; ActorIsSolid(actor) 'This will output 0
#/end
#ref SetActorSolid