Camera node for 2D scenes. Camera node for 2D scenes. It forces the screen (current layer) to scroll following this node. This makes it easier (and faster) to program scrollable scenes than manually changing the position of [CanvasItem] based nodes. This node is intended to be a simple helper to get things going quickly and it may happen often that more functionality is desired to change how the camera works. To make your own custom camera node, simply inherit from [Node2D] and change the transform of the canvas by calling get_viewport().set_canvas_transform(m) in [Viewport]. Align the camera to the tracked node Removes any [code]Camera2D[/code] from the ancestor [Viewport]'s internal currently-assigned camera. Force the camera to update scroll immediately. Return the camera position. Returns the location of the [code]Camera2D[/code]'s screen-center, relative to the origin. Returns the [Viewport] used by the camera if it is not using the default viewport. Returns the horizontal offset of the camera. Returns the vertical offset of the camera. Make this the current 2D camera for the scene (viewport and layer), in case there's many cameras in the scene. Set the camera's position immediately to its current smoothing destination. This has no effect if smoothing is disabled. Assigns a custom [Viewport] node to the [code]Camera2D[/code]. If [code]viewport[/code] is not a [Viewport], it re-assigns the default viewport instead. The camera's horizontal offset is set to [code]ofs[/code]. The camera's vertical offset is set to [code]ofs[/code]. The Camera2D's anchor point. See [code]ANCHOR_MODE_*[/code] constants. If [code]true[/code] the camera is the active camera for the current scene. Only one camera can be current, so setting a different camera [code]current[/code] will disable this one. Bottom margin needed to drag the camera. A value of [code]1[/code] makes the camera move only when reaching the edge of the screen. If [code]true[/code] the camera only moves when reaching the horizontal drag margins. If [code]false[/code] the camera moves horizontally regardless of margins. Default value: [code]true[/code]. Left margin needed to drag the camera. A value of [code]1[/code] makes the camera move only when reaching the edge of the screen. Right margin needed to drag the camera. A value of [code]1[/code] makes the camera move only when reaching the edge of the screen. Top margin needed to drag the camera. A value of [code]1[/code] makes the camera move only when reaching the edge of the screen. If [code]true[/code] the camera only moves when reaching the vertical drag margins. If [code]false[/code] the camera moves vertically regardless of margins. Default value: [code]true[/code]. If [code]true[/code] draws the camera's drag margin rectangle in the editor. Default value: [code]false[/code] If [code]true[/code] draws the camera's limits rectangle in the editor. Default value: [code]true[/code] If [code]true[/code] draws the camera's screen rectangle in the editor. Default value: [code]false[/code] Bottom scroll limit in pixels. The camera stops moving when reaching this value. Left scroll limit in pixels. The camera stops moving when reaching this value. Right scroll limit in pixels. The camera stops moving when reaching this value. If [code]true[/code] the camera smoothly stops when reaches its limits. Default value: [code]false[/code] Top scroll limit in pixels. The camera stops moving when reaching this value. The camera's offset, useful for looking around or camera shake animations. If [code]true[/code] the camera rotates with the target. Default value: [code]false[/code] If [code]true[/code] the camera smoothly moves towards the target at [member smoothing_speed]. Default value: [code]false[/code] Speed in pixels per second of the camera's smoothing effect when [member smoothing_enabled] is [code]true[/code] The camera's zoom relative to the viewport. Values larger than [code]Vector2(1, 1)[/code] zoom out and smaller values zoom in. For an example, use [code]Vector2(0.5, 0.5)[/code] for a 2x zoom in, and [code]Vector2(4, 4)[/code] for a 4x zoom out. The camera's position is fixed so that the top-left corner is always at the origin. The camera's position takes into account vertical/horizontal offsets and the screen size.