diff --git a/doc/classes/ClippedCamera.xml b/doc/classes/ClippedCamera.xml index f6a2a3bc112..9eda79bbae7 100644 --- a/doc/classes/ClippedCamera.xml +++ b/doc/classes/ClippedCamera.xml @@ -1,8 +1,10 @@ + A [Camera] that includes collision. + This node extends [Camera] to add collisions with [Area] and/or [PhysicsBody] nodes. The camera cannot move through colliding objects. @@ -13,6 +15,7 @@ + Adds a collision exception so the camera does not collide with the specified node. @@ -21,18 +24,21 @@ + Adds a collision exception so the camera does not collide with the specified [RID]. + Removes all collision exceptions. + Returns the distance the camera has been offset due to a collision. @@ -41,6 +47,8 @@ + Returns [code]true[/code] if the specified bit index is on. + [b]Note:[/b] Bit indices range from 0-19. @@ -49,6 +57,7 @@ + Removes a collision exception with the specified node. @@ -57,6 +66,7 @@ + Removes a collision exception with the specified [RID]. @@ -67,25 +77,34 @@ + Sets the specified bit index to the [code]value[/code]. + [b]Note:[/b] Bit indices range from 0-19. + If [code]true[/code], the camera stops on contact with [Area]s. + If [code]true[/code], the camera stops on contact with [PhysicsBody]s. + The camera's collision mask. Only objects in at least one collision layer matching the mask will be detected. + The camera's collision margin. The camera can't get closer than this distance to a colliding object. + The camera's process callback. See [enum ProcessMode]. + The camera updates with the [code]_physics_process[/code] callback. + The camera updates with the [code]_process[/code] callback.