├── .gitattributes ├── .gitignore ├── CameraTest.tscn ├── LICENSE ├── README.md ├── TouchCamera2D.gd ├── android └── .build_version ├── default_env.tres ├── icon.png ├── limits.svg ├── project.godot ├── screenshots ├── .gdignore ├── add_camera.gif ├── fling.gif ├── icon_path_highlighted.png ├── mouse_settings.gif ├── move_while_zooming.gif ├── script_parameters.png ├── stop-on-limit.gif └── zoom_at_point.gif ├── touch_camera_icon.svg ├── touch_camera_icon_adaptive.svg ├── touch_camera_icon_adaptive_bg.png └── touch_camera_icon_adaptive_fg.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/.gitignore -------------------------------------------------------------------------------- /CameraTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/CameraTest.tscn -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/README.md -------------------------------------------------------------------------------- /TouchCamera2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/TouchCamera2D.gd -------------------------------------------------------------------------------- /android/.build_version: -------------------------------------------------------------------------------- 1 | 3.3.stable 2 | -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/icon.png -------------------------------------------------------------------------------- /limits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/limits.svg -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/project.godot -------------------------------------------------------------------------------- /screenshots/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshots/add_camera.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/screenshots/add_camera.gif -------------------------------------------------------------------------------- /screenshots/fling.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/screenshots/fling.gif -------------------------------------------------------------------------------- /screenshots/icon_path_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/screenshots/icon_path_highlighted.png -------------------------------------------------------------------------------- /screenshots/mouse_settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/screenshots/mouse_settings.gif -------------------------------------------------------------------------------- /screenshots/move_while_zooming.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/screenshots/move_while_zooming.gif -------------------------------------------------------------------------------- /screenshots/script_parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/screenshots/script_parameters.png -------------------------------------------------------------------------------- /screenshots/stop-on-limit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/screenshots/stop-on-limit.gif -------------------------------------------------------------------------------- /screenshots/zoom_at_point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/screenshots/zoom_at_point.gif -------------------------------------------------------------------------------- /touch_camera_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/touch_camera_icon.svg -------------------------------------------------------------------------------- /touch_camera_icon_adaptive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/touch_camera_icon_adaptive.svg -------------------------------------------------------------------------------- /touch_camera_icon_adaptive_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/touch_camera_icon_adaptive_bg.png -------------------------------------------------------------------------------- /touch_camera_icon_adaptive_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williambcosta/godot-touch-camera-2d/HEAD/touch_camera_icon_adaptive_fg.png --------------------------------------------------------------------------------