summaryrefslogtreecommitdiff
path: root/doc/classes/InterpolatedCamera.xml
blob: ca3a5d0733e5150d4e44c59754023523d11bd6f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8" ?>
<class name="InterpolatedCamera" inherits="Camera" category="Core" version="3.2">
	<brief_description>
		Camera which moves toward another node.
	</brief_description>
	<description>
		InterpolatedCamera is a [Camera] which smoothly moves to match a target node's position and rotation.
		If it is not [member enabled] or does not have a valid target set, InterpolatedCamera acts like a normal Camera.
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="set_target">
			<return type="void">
			</return>
			<argument index="0" name="target" type="Object">
			</argument>
			<description>
				Sets the node to move toward and orient with.
			</description>
		</method>
	</methods>
	<members>
		<member name="enabled" type="bool" setter="set_interpolation_enabled" getter="is_interpolation_enabled" default="false">
			If [code]true[/code], and a target is set, the camera will move automatically.
		</member>
		<member name="speed" type="float" setter="set_speed" getter="get_speed" default="1.0">
			How quickly the camera moves toward its target. Higher values will result in tighter camera motion.
		</member>
		<member name="target" type="NodePath" setter="set_target_path" getter="get_target_path" default="NodePath(&quot;&quot;)">
			The target's [NodePath].
		</member>
	</members>
	<constants>
	</constants>
</class>