Camera rotation fixed
11
Core/cursor_behaviour.gd
Normal file
|
@ -0,0 +1,11 @@
|
|||
extends Node
|
||||
## Handle all the cursor appareance related stuff.
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
pass # Replace with function body.
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta: float) -> void:
|
||||
pass
|
1
Core/cursor_behaviour.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://d2f3kt810ncsa
|
|
@ -1,4 +1,5 @@
|
|||
extends Node3D
|
||||
class_name Player
|
||||
#region Declarations
|
||||
@export_category("Speed")
|
||||
@onready var move_speed: float = ProjectSettings.get_setting("game/controls/camera_move_speed",20.0)
|
||||
|
@ -6,19 +7,21 @@ extends Node3D
|
|||
@export_category("Limits")
|
||||
@export_range(-10,10,1) var zoom_min: float = -4
|
||||
@export_range(11,50,1) var zoom_max: float = 20
|
||||
@export_range(0,0.95,0.01) var zoom_speed_damp: float = 0.5
|
||||
@export_range(0,0.95,0.01) var zoom_speed_damp: float = ProjectSettings.get_setting("game/controls/camera_zoom_damp",0.85)
|
||||
|
||||
@export_range(0,32,4) var edge_scrolling_margin: int = ProjectSettings.get_setting("game/controls/edge_scrolling_margin",8)
|
||||
@onready var edge_scrolling_speed: float = ProjectSettings.get_setting("game/controls/edge_scrolling_speed",25.0)
|
||||
|
||||
@onready var socket: Node3D = $camera_point
|
||||
@onready var cam: Camera3D = %camera_player
|
||||
|
||||
var zoom_direction: float = 0.0 # if different than zero, zoom is happening
|
||||
var move_disabled:bool = false
|
||||
var zoom_disabled:bool = false
|
||||
var edge_scroll_disabled:bool = ProjectSettings.get_setting("game/controls/edge_scrolling_disabled",false)
|
||||
var invert_rotation_x:bool = ProjectSettings.get_setting("game/controls/invert_cam_rotation_x",false)
|
||||
var invert_rotation_y:bool = ProjectSettings.get_setting("game/controls/invert_cam_rotation_y",false)
|
||||
var rotation_mode:bool = false
|
||||
var rotation_damp:float = 0.01
|
||||
#endregion
|
||||
|
||||
|
||||
|
@ -32,16 +35,27 @@ func _process(delta: float) -> void:
|
|||
cam_zoom(delta)
|
||||
cam_edge_scroll(delta)
|
||||
cam_rotation(delta)
|
||||
if rotation_mode:
|
||||
print(Input.get_last_mouse_velocity())
|
||||
rotation.y += Input.get_last_mouse_velocity().x / 10000 * -1 #TODO: REMOVE MAGIC NUMBERS
|
||||
print(rotation.z + Input.get_last_mouse_velocity().y / 10000 * -1)
|
||||
rotation.z = clamp(rotation.z + Input.get_last_mouse_velocity().y / 10000 * -1,-0.75,0.35)
|
||||
|
||||
|
||||
func _notification(what: int):
|
||||
if what == NOTIFICATION_APPLICATION_FOCUS_OUT:
|
||||
print("focus out!")
|
||||
#get_tree().paused = true
|
||||
edge_scroll_disabled = true
|
||||
move_disabled = true
|
||||
if what == NOTIFICATION_APPLICATION_FOCUS_IN:
|
||||
print("focus in!")
|
||||
#get_tree().paused = false
|
||||
edge_scroll_disabled = false
|
||||
move_disabled = false
|
||||
if what == NOTIFICATION_WM_MOUSE_ENTER:
|
||||
print("focus in!")
|
||||
|
||||
|
||||
func _unhandled_input(event: InputEvent) -> void:
|
||||
if event.is_action("scroll_up"):
|
||||
zoom_direction = -1
|
||||
print("scroll")
|
||||
if event.is_action("scroll_down"):
|
||||
zoom_direction = 1
|
||||
if event.is_action_pressed("rotation_mode"):
|
||||
|
@ -50,6 +64,8 @@ func _unhandled_input(event: InputEvent) -> void:
|
|||
if event.is_action_released("rotation_mode"):
|
||||
rotation_mode = false
|
||||
Input.mouse_mode = Input.MOUSE_MODE_CONFINED
|
||||
if event.as_text() == "Escape":
|
||||
get_tree().quit()
|
||||
|
||||
|
||||
#region Getter
|
||||
|
@ -58,8 +74,10 @@ func get_mouse_position() -> Vector2:
|
|||
|
||||
|
||||
## multiplicator for movement speed, based on zoom level
|
||||
func get_zoom_factor() -> float:
|
||||
return remap(cam.position.z,zoom_min,zoom_max,0.1,2.0)
|
||||
## [br][br]
|
||||
## Return a remapped float between [param _min] and [param _max]
|
||||
func get_zoom_factor(_min:=0.1,_max:=2.0) -> float:
|
||||
return remap(cam.position.z,zoom_min,zoom_max,_min,_max)
|
||||
|
||||
|
||||
#endregion
|
||||
|
@ -74,7 +92,8 @@ func cam_move(delta:float) -> void:
|
|||
if Input.is_action_pressed("cam_left"): velocity_direction -= transform.basis.z
|
||||
if Input.is_action_pressed("cam_right"): velocity_direction += transform.basis.z
|
||||
|
||||
position += velocity_direction.normalized() * delta * move_speed * get_zoom_factor()
|
||||
position.x += velocity_direction.normalized().x * delta * move_speed * get_zoom_factor()
|
||||
position.z += velocity_direction.normalized().z * delta * move_speed * get_zoom_factor()
|
||||
|
||||
|
||||
## Controls the zoom of the player camera
|
||||
|
@ -84,9 +103,10 @@ func cam_move(delta:float) -> void:
|
|||
func cam_zoom(delta:float) -> void:
|
||||
if zoom_disabled:return
|
||||
|
||||
var new_zoom: float = clamp(cam.position.z + zoom_speed * zoom_direction * delta,zoom_min,zoom_max)
|
||||
var new_zoom: float = clamp(cam.position.z + (zoom_speed * zoom_direction * delta),zoom_min,zoom_max)
|
||||
if new_zoom != cam.position.z:
|
||||
print("new zoom : ", new_zoom, " because zoom_direction = ",zoom_direction)
|
||||
cam.position.z = new_zoom
|
||||
|
||||
zoom_direction *= zoom_speed_damp #Smooth the deceleration
|
||||
|
||||
|
||||
|
@ -112,5 +132,7 @@ func cam_edge_scroll(delta:float) -> void:
|
|||
|
||||
|
||||
func cam_rotation(delta:float) -> void:
|
||||
pass
|
||||
if rotation_mode:
|
||||
rotation.y += Input.get_last_mouse_velocity().x * delta * rotation_damp * (-1 if invert_rotation_x else 1) #TODO: REMOVE MAGIC NUMBERS
|
||||
%camera_rot.rotation.z = clamp(%camera_rot.rotation.z + Input.get_last_mouse_velocity().y * rotation_damp * delta * (-1 if invert_rotation_y else 1),-0.75,0.35) #TODO: REMOVE MAGIC NUMBERS
|
||||
#endregion
|
||||
|
|
|
@ -1,25 +1,37 @@
|
|||
[gd_scene load_steps=4 format=3 uid="uid://djj1fc8qm10t6"]
|
||||
[gd_scene load_steps=5 format=3 uid="uid://djj1fc8qm10t6"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://c23s1syo7wjm8" path="res://Core/player.gd" id="1_e571r"]
|
||||
[ext_resource type="Script" uid="uid://d2f3kt810ncsa" path="res://Core/cursor_behaviour.gd" id="2_ipmo0"]
|
||||
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_e571r"]
|
||||
blend_mode = 1
|
||||
no_depth_test = true
|
||||
albedo_color = Color(1, 0, 0.15294115, 1)
|
||||
albedo_color = Color(1, 0, 0.152941, 1)
|
||||
proximity_fade_enabled = true
|
||||
proximity_fade_distance = 2.0
|
||||
|
||||
[sub_resource type="SphereMesh" id="SphereMesh_ipmo0"]
|
||||
lightmap_size_hint = Vector2i(17, 9)
|
||||
material = SubResource("StandardMaterial3D_e571r")
|
||||
flip_faces = true
|
||||
height = 0.5
|
||||
is_hemisphere = true
|
||||
|
||||
[node name="player_root" type="Node3D"]
|
||||
script = ExtResource("1_e571r")
|
||||
|
||||
[node name="camera_point" type="Node3D" parent="."]
|
||||
transform = Transform3D(-4.371139e-08, 0.57357645, -0.81915206, 0, 0.81915206, 0.57357645, 1, 2.5071824e-08, -3.5806274e-08, -4.4828167, 2.9061706, -1.0852736e-07)
|
||||
[node name="camera_rot" type="Node3D" parent="."]
|
||||
unique_name_in_owner = true
|
||||
|
||||
[node name="camera_player" type="Camera3D" parent="camera_point"]
|
||||
[node name="camera_point" type="Node3D" parent="camera_rot"]
|
||||
unique_name_in_owner = true
|
||||
transform = Transform3D(-4.37114e-08, 0.573576, -0.819152, 0, 0.819152, 0.573576, 1, 2.50718e-08, -3.58063e-08, -4.48282, 2.90617, -1.08527e-07)
|
||||
|
||||
[node name="camera_player" type="Camera3D" parent="camera_rot/camera_point"]
|
||||
unique_name_in_owner = true
|
||||
|
||||
[node name="MeshInstance3D" type="MeshInstance3D" parent="."]
|
||||
mesh = SubResource("SphereMesh_ipmo0")
|
||||
|
||||
[node name="CursorComponent" type="Node" parent="."]
|
||||
script = ExtResource("2_ipmo0")
|
||||
|
|
|
@ -11,10 +11,10 @@
|
|||
[ext_resource type="VoxelGIData" uid="uid://cubwphu04tyr4" path="res://generated/gym.VoxelGI_data.res" id="9_ipipj"]
|
||||
|
||||
[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_vkxe1"]
|
||||
sky_top_color = Color(0.29998082, 0.7019671, 0.7430855, 1)
|
||||
sky_horizon_color = Color(0.67294115, 0.76902217, 0.7743324, 1)
|
||||
ground_bottom_color = Color(0.08728691, 0.06962478, 0.049747247, 1)
|
||||
ground_horizon_color = Color(0.67294115, 0.76902217, 0.7743324, 1)
|
||||
sky_top_color = Color(0.299981, 0.701967, 0.743086, 1)
|
||||
sky_horizon_color = Color(0.672941, 0.769022, 0.774332, 1)
|
||||
ground_bottom_color = Color(0.0872869, 0.0696248, 0.0497472, 1)
|
||||
ground_horizon_color = Color(0.672941, 0.769022, 0.774332, 1)
|
||||
energy_multiplier = 2.0
|
||||
|
||||
[sub_resource type="Sky" id="Sky_607fo"]
|
||||
|
@ -45,11 +45,11 @@ albedo_texture = ExtResource("6_anror")
|
|||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_aq7w3"]
|
||||
resource_local_to_scene = true
|
||||
resource_name = "proto_rigid"
|
||||
albedo_color = Color(0.8515964, 0.5950552, 0.037019093, 1)
|
||||
albedo_color = Color(0.851596, 0.595055, 0.0370191, 1)
|
||||
albedo_texture = ExtResource("6_anror")
|
||||
|
||||
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_afokq"]
|
||||
points = PackedVector3Array(-0.9539594, 0.07707009, -0.92311066, 0.9954823, 1.9021704, 0.90234715, 0.9539307, 1.9229443, 0.92312497, 0.9022426, 1.902107, -0.9956503, -0.9023408, 1.9953208, 0.9023384, 0.9023113, 0.004663769, 0.9023524, -0.9022721, 0.09790697, 0.99563485, 0.9954824, 0.09782952, -0.90234715, -0.99551034, 1.9021565, -0.90233314, 0.9023113, 1.9953362, -0.9023524, -0.99551034, 0.097843505, 0.90233314, 0.9022426, 1.902107, 0.9956503, -0.9022721, 0.09790697, -0.99563485, -0.9023408, 0.004679235, -0.9023384, 0.9022426, 0.097892955, -0.99565035, -0.9022721, 1.902093, -0.99563485, 0.9022426, 0.097892955, 0.99565035, -0.9022721, 1.902093, 0.99563485, 0.9023113, 0.004663769, -0.9023524, -0.9023408, 1.9953208, -0.9023384, -0.9023408, 0.004679235, 0.9023384, 0.9954824, 0.09782952, 0.90234715, 0.9954823, 1.9021704, -0.90234715, -0.99551034, 1.9021565, 0.90233314, 0.9023113, 1.9953362, 0.9023524, -0.99551034, 0.097843505, -0.90233314)
|
||||
points = PackedVector3Array(-0.953959, 0.0770701, -0.923111, 0.995482, 1.90217, 0.902347, 0.953931, 1.92294, 0.923125, 0.902243, 1.90211, -0.99565, -0.902341, 1.99532, 0.902338, 0.902311, 0.00466377, 0.902352, -0.902272, 0.097907, 0.995635, 0.995482, 0.0978295, -0.902347, -0.99551, 1.90216, -0.902333, 0.902311, 1.99534, -0.902352, -0.99551, 0.0978435, 0.902333, 0.902243, 1.90211, 0.99565, -0.902272, 0.097907, -0.995635, -0.902341, 0.00467924, -0.902338, 0.902243, 0.097893, -0.99565, -0.902272, 1.90209, -0.995635, 0.902243, 0.097893, 0.99565, -0.902272, 1.90209, 0.995635, 0.902311, 0.00466377, -0.902352, -0.902341, 1.99532, -0.902338, -0.902341, 0.00467924, 0.902338, 0.995482, 0.0978295, 0.902347, 0.995482, 1.90217, -0.902347, -0.99551, 1.90216, 0.902333, 0.902311, 1.99534, 0.902352, -0.99551, 0.0978435, -0.902333)
|
||||
|
||||
[node name="Gym" type="Node"]
|
||||
|
||||
|
@ -57,7 +57,7 @@ points = PackedVector3Array(-0.9539594, 0.07707009, -0.92311066, 0.9954823, 1.90
|
|||
environment = SubResource("Environment_lefpg")
|
||||
|
||||
[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
|
||||
transform = Transform3D(-0.8660254, -0.43301278, 0.25, 0, 0.49999997, 0.86602545, -0.50000006, 0.75, -0.43301266, 0, 0, 0)
|
||||
transform = Transform3D(-0.866025, -0.433013, 0.25, 0, 0.5, 0.866025, -0.5, 0.75, -0.433013, 0, 0, 0)
|
||||
light_energy = 1.3
|
||||
shadow_enabled = true
|
||||
directional_shadow_max_distance = 500.0
|
||||
|
@ -69,43 +69,41 @@ use_collision = true
|
|||
mesh = SubResource("BoxMesh_afokq")
|
||||
|
||||
[node name="dummy" parent="." instance=ExtResource("2_40027")]
|
||||
transform = Transform3D(0.23293716, 0, -0.8693332, 0, 0.9, 0, 0.8693332, 0, 0.23293716, 1.636292, 0, 5.282063)
|
||||
transform = Transform3D(0.232937, 0, -0.869333, 0, 0.9, 0, 0.869333, 0, 0.232937, 1.63629, 0, 5.28206)
|
||||
|
||||
[node name="BarrelA" type="MeshInstance3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.46089, 0.4690876, -5.6751404)
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.46089, 0.469088, -5.67514)
|
||||
material_override = SubResource("StandardMaterial3D_mqp7f")
|
||||
mesh = ExtResource("3_afokq")
|
||||
|
||||
[node name="BoxA" type="MeshInstance3D" parent="."]
|
||||
transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 4.6958694, 0, 0.47373772)
|
||||
transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 4.69587, 0, 0.473738)
|
||||
mesh = ExtResource("4_mqp7f")
|
||||
|
||||
[node name="BoxB" type="MeshInstance3D" parent="."]
|
||||
transform = Transform3D(1.545552, 0, -1.7033111, 0, 2.3, 0, 1.7033111, 0, 1.545552, 6.5613637, 0, -3.459313)
|
||||
transform = Transform3D(1.54555, 0, -1.70331, 0, 2.3, 0, 1.70331, 0, 1.54555, 6.56136, 0, -3.45931)
|
||||
mesh = ExtResource("5_ipipj")
|
||||
|
||||
[node name="CubePrototypeSmall2" type="MeshInstance3D" parent="."]
|
||||
transform = Transform3D(0.71254057, 0, -0.7016309, 0, 1, 0, 0.7016309, 0, 0.71254057, 0.19311635, 4.7683716e-07, 6.7632627)
|
||||
transform = Transform3D(0.712541, 0, -0.701631, 0, 1, 0, 0.701631, 0, 0.712541, 0.193116, 4.76837e-07, 6.76326)
|
||||
mesh = ExtResource("7_f8cpb")
|
||||
|
||||
[node name="RigidBody3D2" type="RigidBody3D" parent="."]
|
||||
|
||||
[node name="CubePrototypeSmall" type="MeshInstance3D" parent="RigidBody3D2"]
|
||||
transform = Transform3D(0.9493213, 0, 0.31430727, -0.16992609, 0.8412561, 0.5132381, -0.2644129, -0.54063684, 0.79862237, -5.197, 6.3825016, -12.265)
|
||||
transform = Transform3D(0.949321, 0, 0.314307, -0.169926, 0.841256, 0.513238, -0.264413, -0.540637, 0.798622, -5.197, 6.3825, -12.265)
|
||||
material_override = SubResource("StandardMaterial3D_aq7w3")
|
||||
mesh = ExtResource("7_f8cpb")
|
||||
skeleton = NodePath("../../root/@EditorNode@20441/@Panel@14/@VBoxContainer@15/DockHSplitLeftL/DockHSplitLeftR/DockHSplitMain/@VBoxContainer@26/DockVSplitCenter/@VSplitContainer@62/@VBoxContainer@63/@EditorMainScreen@103/MainScreen/@CanvasItemEditor@10870/@VSplitContainer@10515/@HSplitContainer@10517/@HSplitContainer@10519/@Control@10520/@SubViewportContainer@10521/@SubViewport@10522/Gym")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="RigidBody3D2"]
|
||||
transform = Transform3D(0.9493213, 0, 0.31430727, -0.16992609, 0.8412561, 0.5132381, -0.2644129, -0.54063684, 0.79862237, -5.197, 6.3825016, -12.265)
|
||||
transform = Transform3D(0.949321, 0, 0.314307, -0.169926, 0.841256, 0.513238, -0.264413, -0.540637, 0.798622, -5.197, 6.3825, -12.265)
|
||||
shape = SubResource("ConvexPolygonShape3D_afokq")
|
||||
|
||||
[node name="player_root" parent="." instance=ExtResource("8_mqp7f")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.6329784, 0, 0)
|
||||
zoom_min = -4.0
|
||||
zoom_speed_damp = 0.85
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.528881, 0, 0)
|
||||
|
||||
[node name="VoxelGI" type="VoxelGI" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16.096863, 9.957031, 31.13272)
|
||||
size = Vector3(92.730835, 66.615234, 140.03693)
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16.0969, 9.95703, 31.1327)
|
||||
size = Vector3(92.7308, 66.6152, 140.037)
|
||||
data = ExtResource("9_ipipj")
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
[ext_resource type="Texture2D" uid="uid://b1y8uw4vyffis" path="res://Packs/Kaykit-Proto/textures/prototypebits_texture_floor.png" id="1_de2bv"]
|
||||
|
||||
[resource]
|
||||
albedo_color = Color(0.70796657, 0.7079665, 0.7079665, 0)
|
||||
albedo_color = Color(0.707967, 0.707967, 0.707967, 0)
|
||||
albedo_texture = ExtResource("1_de2bv")
|
||||
metallic = 0.55
|
||||
metallic_specular = 0.36
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[resource]
|
||||
code = "shader_type spatial;
|
||||
render_mode blend_mix, depth_draw_opaque, depth_test_default, cull_back, diffuse_lambert, specular_schlick_ggx;
|
||||
render_mode blend_mix, depth_draw_opaque, cull_back, diffuse_lambert, specular_schlick_ggx;
|
||||
|
||||
|
||||
|
||||
|
|
6
Packs/Kenney-cursors/Basic/arrow_e.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M6 18 L6 14 Q6 13.6 6.3 13.3 6.6 13 7 13 L18 13 18 10 Q18 9.6 18.3 9.3 18.6 9 19 9 19.4 9 19.7 9.3 L25.7 15.3 26 16 25.7 16.7 19.7 22.7 19 23 Q18.6 23 18.3 22.7 18 22.4 18 22 L18 19 7 19 Q6.6 19 6.3 18.7 6 18.4 6 18"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 397 B |
18
Packs/Kenney-cursors/Basic/arrow_e.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://dmopgf0y3k7y6"
|
||||
path="res://.godot/imported/arrow_e.svg-e6336d8259f44192b5e4977c27383c04.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/arrow_e.svg"
|
||||
dest_files=["res://.godot/imported/arrow_e.svg-e6336d8259f44192b5e4977c27383c04.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/arrow_n.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M22 14 L19 14 19 25 18.7 25.7 Q18.4 26 18 26 L14 26 Q13.6 26 13.3 25.7 13 25.4 13 25 L13 14 10 14 Q9.6 14 9.3 13.7 9 13.4 9 13 9 12.6 9.3 12.3 L15.3 6.3 Q15.6 6 16 6 16.4 6 16.7 6.3 L22.7 12.3 23 13 22.7 13.7 22 14"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 396 B |
18
Packs/Kenney-cursors/Basic/arrow_n.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://c6wdu38poxjsf"
|
||||
path="res://.godot/imported/arrow_n.svg-a6c014e72772ceae15c7360f7bd5589e.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/arrow_n.svg"
|
||||
dest_files=["res://.godot/imported/arrow_n.svg-a6c014e72772ceae15c7360f7bd5589e.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/arrow_ne.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M11.05 23.65 L8.4 21 Q8.1 20.7 8.1 20.3 8.1 19.9 8.4 19.6 L16.35 11.65 14.35 9.65 Q14.05 9.35 14.05 8.95 14.05 8.55 14.35 8.25 14.65 7.95 15.05 7.95 L23 8 Q23.4 8 23.7 8.3 L24 9 24.05 16.95 23.75 17.65 23.05 17.95 Q22.65 17.95 22.35 17.65 L20.4 15.7 12.45 23.65 11.75 23.95 Q11.35 23.95 11.05 23.65"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 480 B |
18
Packs/Kenney-cursors/Basic/arrow_ne.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://cgol3cflunuto"
|
||||
path="res://.godot/imported/arrow_ne.svg-e31627c8a78d541a11a057fea2acfb3e.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/arrow_ne.svg"
|
||||
dest_files=["res://.godot/imported/arrow_ne.svg-e31627c8a78d541a11a057fea2acfb3e.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/arrow_nw.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M9.1 8 L17.05 7.95 Q17.45 7.95 17.75 8.25 L18.05 8.95 17.75 9.65 15.75 11.65 23.7 19.6 24 20.3 23.7 21 21.05 23.65 Q20.75 23.95 20.35 23.95 L19.65 23.65 11.7 15.7 9.75 17.65 9.05 17.95 Q8.65 17.95 8.35 17.65 8.05 17.35 8.05 16.95 L8.1 9 Q8.1 8.6 8.4 8.3 8.7 8 9.1 8"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 447 B |
18
Packs/Kenney-cursors/Basic/arrow_nw.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://bfgsl8e0n2qyh"
|
||||
path="res://.godot/imported/arrow_nw.svg-159cd142d796d074daf6bd62305efb76.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/arrow_nw.svg"
|
||||
dest_files=["res://.godot/imported/arrow_nw.svg-159cd142d796d074daf6bd62305efb76.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/arrow_s.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M14 6 L18 6 Q18.4 6 18.7 6.3 L19 7 19 18 22 18 Q22.4 18 22.7 18.3 L23 19 22.7 19.7 16.7 25.7 16 26 15.3 25.7 9.3 19.7 Q9 19.4 9 19 9 18.6 9.3 18.3 9.6 18 10 18 L13 18 13 7 Q13 6.6 13.3 6.3 13.6 6 14 6"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 382 B |
18
Packs/Kenney-cursors/Basic/arrow_s.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://crrf7w3edhd8f"
|
||||
path="res://.godot/imported/arrow_s.svg-dee07a4bc00664c449347930d2c1ddf9.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/arrow_s.svg"
|
||||
dest_files=["res://.godot/imported/arrow_s.svg-dee07a4bc00664c449347930d2c1ddf9.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/arrow_se.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M14.35 22.25 L16.35 20.25 8.4 12.3 Q8.1 12 8.1 11.6 8.1 11.2 8.4 10.9 L11.05 8.25 Q11.35 7.95 11.75 7.95 L12.45 8.25 20.4 16.2 22.35 14.25 Q22.65 13.95 23.05 13.95 23.45 13.95 23.75 14.25 L24.05 14.95 24 22.9 23.7 23.6 23 23.9 15.05 23.95 Q14.65 23.95 14.35 23.65 14.05 23.35 14.05 22.95 14.05 22.55 14.35 22.25"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 493 B |
18
Packs/Kenney-cursors/Basic/arrow_se.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://bcqiv0v0fihft"
|
||||
path="res://.godot/imported/arrow_se.svg-8984fec68c6d637995abf40a713f069d.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/arrow_se.svg"
|
||||
dest_files=["res://.godot/imported/arrow_se.svg-8984fec68c6d637995abf40a713f069d.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/arrow_sw.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M23.7 12.3 L15.75 20.25 17.75 22.25 18.05 22.95 17.75 23.65 17.05 23.95 9.1 23.9 Q8.7 23.9 8.4 23.6 8.1 23.3 8.1 22.9 L8.05 14.95 Q8.05 14.55 8.35 14.25 8.65 13.95 9.05 13.95 L9.75 14.25 11.7 16.2 19.65 8.25 Q19.95 7.95 20.35 7.95 20.75 7.95 21.05 8.25 L23.7 10.9 24 11.6 23.7 12.3"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 463 B |
18
Packs/Kenney-cursors/Basic/arrow_sw.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://dranhjvfuvkao"
|
||||
path="res://.godot/imported/arrow_sw.svg-50adb8bccfe647c600b49dc57d7ccbb6.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/arrow_sw.svg"
|
||||
dest_files=["res://.godot/imported/arrow_sw.svg-50adb8bccfe647c600b49dc57d7ccbb6.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/arrow_w.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M12.3 22.7 L6.3 16.7 Q6 16.4 6 16 6 15.6 6.3 15.3 L12.3 9.3 Q12.6 9 13 9 13.4 9 13.7 9.3 L14 10 14 13 25 13 Q25.4 13 25.7 13.3 L26 14 26 18 25.7 18.7 25 19 14 19 14 22 13.7 22.7 Q13.4 23 13 23 L12.3 22.7"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 385 B |
18
Packs/Kenney-cursors/Basic/arrow_w.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://d0h30h78eh7r4"
|
||||
path="res://.godot/imported/arrow_w.svg-53af8828f743f56b2b795de7e74d3575.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/arrow_w.svg"
|
||||
dest_files=["res://.godot/imported/arrow_w.svg-53af8828f743f56b2b795de7e74d3575.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/boot.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M16.2 15.65 L15.25 7.35 14.35 6.85 Q13.85 6.35 13.85 5.65 13.85 4.95 14.35 4.5 14.8 4 15.5 4 L26.3 4 Q27 4 27.5 4.5 28 4.95 28 5.65 28 6.35 27.5 6.85 L26.8 7.3 Q26 16.95 25.95 26.45 L19.3 26.8 19.3 25.65 Q7.55 28 4.25 25.3 3.25 21.3 6.75 20.1 11.7 18.4 16.2 15.65"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 445 B |
18
Packs/Kenney-cursors/Basic/boot.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://bapmgfjhb8ydc"
|
||||
path="res://.godot/imported/boot.svg-413149d11d4e1525e0b2dca206d24c32.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/boot.svg"
|
||||
dest_files=["res://.godot/imported/boot.svg-413149d11d4e1525e0b2dca206d24c32.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/bracket_a_horizontal.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M28 13 L28 19 27.7 19.7 Q27.4 20 27 20 L25 20 24.3 19.7 Q24 19.4 24 19 L24 18.05 23.95 18 8 18 8 19 7.7 19.7 7 20 5 20 Q4.6 20 4.3 19.7 4 19.4 4 19 L4 13 Q4 12.6 4.3 12.3 4.6 12 5 12 L7 12 Q7.4 12 7.7 12.3 L8 13 8 14 24 14 24 13 Q24 12.6 24.3 12.3 24.6 12 25 12 L27 12 Q27.4 12 27.7 12.3 L28 13"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 476 B |
18
Packs/Kenney-cursors/Basic/bracket_a_horizontal.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://dfquyl0hivq6v"
|
||||
path="res://.godot/imported/bracket_a_horizontal.svg-d28a50b9b5e48ffb42736e5942688eb1.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/bracket_a_horizontal.svg"
|
||||
dest_files=["res://.godot/imported/bracket_a_horizontal.svg-d28a50b9b5e48ffb42736e5942688eb1.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/bracket_a_vertical.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M13 4 L19 4 Q19.4 4 19.7 4.3 L20 5 20 7 19.7 7.7 19 8 18.05 8 18 8.05 18 24 19 24 Q19.4 24 19.7 24.3 L20 25 20 27 19.7 27.7 19 28 13 28 12.3 27.7 Q12 27.4 12 27 L12 25 Q12 24.6 12.3 24.3 12.6 24 13 24 L14 24 14 8 13 8 12.3 7.7 Q12 7.4 12 7 L12 5 Q12 4.6 12.3 4.3 12.6 4 13 4"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 456 B |
18
Packs/Kenney-cursors/Basic/bracket_a_vertical.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://dvdlc1mwvh0fc"
|
||||
path="res://.godot/imported/bracket_a_vertical.svg-b90a7d0a635267e3e536a56ef98be8c7.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/bracket_a_vertical.svg"
|
||||
dest_files=["res://.godot/imported/bracket_a_vertical.svg-b90a7d0a635267e3e536a56ef98be8c7.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/bracket_b_horizontal.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M28 13 L28 15 27 16 28 17 28 19 27.7 19.7 Q27.4 20 27 20 L25 20 24.3 19.7 Q24 19.4 24 19 L24 18.05 23.95 18 8 18 8 19 7.7 19.7 7 20 5 20 Q4.6 20 4.3 19.7 4 19.4 4 19 L4 17 5 16 4 15 4 13 Q4 12.6 4.3 12.3 4.6 12 5 12 L7 12 Q7.4 12 7.7 12.3 L8 13 8 14 24 14 24 13 Q24 12.6 24.3 12.3 24.6 12 25 12 L27 12 Q27.4 12 27.7 12.3 L28 13"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 509 B |
18
Packs/Kenney-cursors/Basic/bracket_b_horizontal.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://c03wm17yjli2u"
|
||||
path="res://.godot/imported/bracket_b_horizontal.svg-6f5a6fad6bdf13e27a17fdc58d9e2b7b.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/bracket_b_horizontal.svg"
|
||||
dest_files=["res://.godot/imported/bracket_b_horizontal.svg-6f5a6fad6bdf13e27a17fdc58d9e2b7b.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/bracket_b_vertical.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M13 4 L15 4 16 5 17 4 19 4 Q19.4 4 19.7 4.3 L20 5 20 7 19.7 7.7 19 8 18.05 8 18 8.05 18 24 19 24 Q19.4 24 19.7 24.3 L20 25 20 27 19.7 27.7 19 28 17 28 16 27 15 28 13 28 12.3 27.7 Q12 27.4 12 27 L12 25 Q12 24.6 12.3 24.3 12.6 24 13 24 L14 24 14 8 13 8 12.3 7.7 Q12 7.4 12 7 L12 5 Q12 4.6 12.3 4.3 12.6 4 13 4"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 489 B |
18
Packs/Kenney-cursors/Basic/bracket_b_vertical.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://dv6uqolumpoe"
|
||||
path="res://.godot/imported/bracket_b_vertical.svg-bbfc8e48d77c4952ed4d1f5a6798007f.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/bracket_b_vertical.svg"
|
||||
dest_files=["res://.godot/imported/bracket_b_vertical.svg-bbfc8e48d77c4952ed4d1f5a6798007f.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/busy_circle.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M21.65 10.35 Q19.3 8 16 8 12.7 8 10.35 10.3 L10.3 10.35 Q8 12.7 8 16 8 19.25 10.3 21.65 L10.35 21.7 10.55 21.8 Q12.5 23.65 15.1 23.95 15.5 24 15.75 24.3 L16 24.95 16 26.95 15.85 27.5 15.45 27.85 14.95 27.95 Q10.75 27.65 7.65 24.7 L7.5 24.45 Q4 20.9 4 16 4 11.15 7.35 7.7 L7.5 7.5 7.7 7.35 Q11.15 4 16 4 21 4 24.5 7.5 27.6 10.65 27.95 14.95 L27.85 15.45 27.5 15.85 26.95 16 24.95 16 Q24.55 16 24.3 15.75 24 15.5 23.95 15.1 23.65 12.35 21.65 10.35"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 627 B |
18
Packs/Kenney-cursors/Basic/busy_circle.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://bxvg7t4lac4ec"
|
||||
path="res://.godot/imported/busy_circle.svg-3c37c19b256dcd1ce690e106069b92fb.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/busy_circle.svg"
|
||||
dest_files=["res://.godot/imported/busy_circle.svg-3c37c19b256dcd1ce690e106069b92fb.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
12
Packs/Kenney-cursors/Basic/busy_circle_fade.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.0048828125 0.0048828125 -0.005157470703125 0.005157470703125 10.05 21.95)" id="gradient0">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#FFFFFF" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M4 16 Q4 11.15 7.35 7.7 L7.5 7.5 7.7 7.35 Q11.15 4 16 4 21 4 24.5 7.5 27.6 10.65 27.95 14.95 L27.85 15.45 27.5 15.85 26.95 16 24.95 16 Q24.55 16 24.3 15.75 24 15.5 23.95 15.1 23.65 12.35 21.65 10.35 19.3 8 16 8 12.7 8 10.35 10.3 L10.3 10.35 Q8 12.7 8 16 L4 16"/>
|
||||
<path stroke="none" fill="url(#gradient0)" d="M4 16 L8 16 Q8 19.25 10.3 21.65 L10.35 21.7 10.55 21.8 Q12.5 23.65 15.1 23.95 15.5 24 15.75 24.3 L16 24.95 16 27 15.85 27.5 15.45 27.85 14.95 27.95 Q10.75 27.65 7.65 24.7 L7.5 24.45 Q4 20.9 4 16"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1 KiB |
18
Packs/Kenney-cursors/Basic/busy_circle_fade.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://cnj2nmhveyenh"
|
||||
path="res://.godot/imported/busy_circle_fade.svg-cd835d976c60dcd2d1a7e46a04d57e03.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/busy_circle_fade.svg"
|
||||
dest_files=["res://.godot/imported/busy_circle_fade.svg-cd835d976c60dcd2d1a7e46a04d57e03.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
17
Packs/Kenney-cursors/Basic/busy_hourglass.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.0077667236328125 0.0077667236328125 -0.0017242431640625 0.0017242431640625 17.9 8)" id="gradient0">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.007110595703125 0.007110595703125 -0.0017242431640625 0.0017242431640625 16 26.4)" id="gradient1">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g>
|
||||
<path stroke="none" fill="url(#gradient0)" d="M9 8 L8 8 Q7.6 8 7.3 7.7 7 7.4 7 7 L7 5 Q7 4.6 7.3 4.3 7.6 4 8 4 L24 4 Q24.4 4 24.7 4.3 L25 5 25 7 24.7 7.7 24.1 8 23 8 9 8"/>
|
||||
<path stroke="none" fill="#FFFFFF" d="M9 8 L23 8 23 8.05 Q22.75 11.5 20.95 14.05 20.1 15.3 19.1 16 20.1 16.7 20.95 17.95 22.75 20.55 23 24 L9.05 24 Q9.25 20.55 11.05 17.95 11.9 16.7 12.9 16 11.9 15.3 11.05 14.05 9.25 11.5 9.05 8.05 L9 8"/>
|
||||
<path stroke="none" fill="url(#gradient1)" d="M23 24 L24.1 24 Q24.4 24 24.7 24.3 L25 25 25 27 24.7 27.7 24 28 8 28 Q7.6 28 7.3 27.7 7 27.4 7 27 L7 25 Q7 24.6 7.3 24.3 7.6 24 8 24 L9.05 24 23 24"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
18
Packs/Kenney-cursors/Basic/busy_hourglass.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://b8wbqf0olv5qe"
|
||||
path="res://.godot/imported/busy_hourglass.svg-9b227ed6e8b295a87679823b673bd6ad.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/busy_hourglass.svg"
|
||||
dest_files=["res://.godot/imported/busy_hourglass.svg-9b227ed6e8b295a87679823b673bd6ad.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/busy_hourglass_outline.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M23 8 L23 8.05 Q22.75 11.5 20.95 14.05 20.1 15.3 19.1 16 20.1 16.7 20.95 17.95 22.75 20.55 23 24 L24.05 24 Q24.4 24 24.7 24.3 L25 25 25 27 24.7 27.7 24 28 8 28 Q7.6 28 7.3 27.7 7 27.4 7 27 L7 25 Q7 24.6 7.3 24.3 7.6 24 8 24 L9.05 24 Q9.25 20.55 11.05 17.95 11.9 16.7 12.9 16 11.9 15.3 11.05 14.05 9.25 11.5 9.05 8.05 L9 8 8 8 Q7.6 8 7.3 7.7 7 7.4 7 7 L7 5 Q7 4.6 7.3 4.3 7.6 4 8 4 L24 4 Q24.4 4 24.7 4.3 L25 5 25 7 24.7 7.7 24.05 8 23 8 M12.7 12.9 L12.7 12.95 14.05 14.35 Q14.6 14.75 14.8 15.4 15 16 14.8 16.65 14.6 17.25 14.05 17.65 13.35 18.15 12.7 19.1 11.25 21.2 11.05 24 L21 24 Q20.75 21.2 19.3 19.1 L17.95 17.65 Q17.4 17.25 17.2 16.65 17 16 17.2 15.4 17.4 14.75 17.95 14.35 L19.3 12.95 19.35 12.9 Q20.75 10.8 21 8 L11.05 8 Q11.25 10.8 12.7 12.9"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 932 B |
18
Packs/Kenney-cursors/Basic/busy_hourglass_outline.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://c65q2akd4a3jk"
|
||||
path="res://.godot/imported/busy_hourglass_outline.svg-6e25f2ccc2d2e286eb025e87f496e922.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/busy_hourglass_outline.svg"
|
||||
dest_files=["res://.godot/imported/busy_hourglass_outline.svg-6e25f2ccc2d2e286eb025e87f496e922.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M23 8 L23 8.05 Q22.75 11.5 20.95 14.05 20.1 15.3 19.1 16 20.1 16.7 20.95 17.95 22.75 20.55 23 24 L24.05 24 Q24.4 24 24.7 24.3 L25 25 25 27 24.7 27.7 24 28 8 28 Q7.6 28 7.3 27.7 7 27.4 7 27 L7 25 Q7 24.6 7.3 24.3 7.6 24 8 24 L9.05 24 Q9.25 20.55 11.05 17.95 L12.1 16.7 12.9 16 12.1 15.35 11.05 14.05 Q9.25 11.5 9.05 8.05 L9 8 8 8 Q7.6 8 7.3 7.7 7 7.4 7 7 L7 5 Q7 4.6 7.3 4.3 7.6 4 8 4 L24 4 Q24.4 4 24.7 4.3 L25 5 25 7 24.7 7.7 24.05 8 23 8 M12.7 12.9 L12.7 12.95 14.05 14.35 Q14.6 14.75 14.8 15.4 15 16 14.8 16.65 14.6 17.25 14.05 17.65 13.35 18.15 12.7 19.1 L12.1 20.1 Q11.2 21.85 11.05 24 L21 24 Q20.75 21.2 19.3 19.1 L17.95 17.65 Q17.4 17.25 17.2 16.65 17 16 17.2 15.4 17.4 14.75 17.95 14.35 L19.3 12.95 19.35 12.9 Q20.75 10.8 21 8 L11.05 8 Q11.2 10.15 12.1 11.9 L12.7 12.9 M15.25 19.3 L16 18.55 16.8 19.3 17.65 20.25 18.55 22 13.5 22 Q13.8 21.05 14.35 20.25 L15.25 19.3"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1 KiB |
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://dvx77hwo6fxqj"
|
||||
path="res://.godot/imported/busy_hourglass_outline_detail.svg-63f0ea67f7ab6fcd2060494a642aca4b.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/busy_hourglass_outline_detail.svg"
|
||||
dest_files=["res://.godot/imported/busy_hourglass_outline_detail.svg-63f0ea67f7ab6fcd2060494a642aca4b.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/cross_large.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M24.8 27.75 L16 18.9 7.15 27.75 6.5 28 Q6 28.05 5.7 27.75 L4.25 26.3 Q3.95 25.95 4 25.5 4 25.05 4.25 24.8 L13.05 15.95 4.35 7.2 4.05 6.5 Q4.05 6.05 4.35 5.75 L5.8 4.25 Q6.15 3.95 6.55 4 7 4 7.25 4.25 L16 13 24.7 4.25 Q24.95 4 25.45 4 25.85 3.95 26.15 4.25 L27.6 5.75 Q27.95 6.05 27.95 6.5 L27.6 7.2 18.9 15.95 27.75 24.8 28 25.5 27.75 26.3 26.25 27.75 25.5 28 24.8 27.75"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 552 B |
18
Packs/Kenney-cursors/Basic/cross_large.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://cuqnw4ibb6mja"
|
||||
path="res://.godot/imported/cross_large.svg-94b7dc2f84571c49c11c98672da65d27.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/cross_large.svg"
|
||||
dest_files=["res://.godot/imported/cross_large.svg-94b7dc2f84571c49c11c98672da65d27.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/cross_small.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M21.8 24.75 L16 18.95 10.15 24.75 9.5 25 8.7 24.75 7.25 23.3 Q6.95 22.95 7 22.5 7 22.05 7.25 21.8 L13.05 15.95 7.35 10.2 7.05 9.5 Q7.05 9.05 7.35 8.75 L8.8 7.25 Q9.15 6.95 9.55 7 10 7 10.25 7.25 L16 13 21.7 7.25 Q21.95 7 22.45 7 22.85 6.95 23.15 7.25 L24.6 8.75 Q24.95 9.05 24.95 9.5 L24.6 10.2 18.9 15.95 24.75 21.8 25 22.5 24.75 23.3 23.25 24.75 22.5 25 21.8 24.75"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 548 B |
18
Packs/Kenney-cursors/Basic/cross_small.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://cegq5lir0uig5"
|
||||
path="res://.godot/imported/cross_small.svg-5dd5373f08faeedb7e3ddeaabdd85928.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/cross_small.svg"
|
||||
dest_files=["res://.godot/imported/cross_small.svg-5dd5373f08faeedb7e3ddeaabdd85928.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/cursor_alias.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M16 13 L28 13 Q30 13 30 15 L30 27 Q30 29 28 29 L16 29 Q14 29 14 27 L14 15 Q14 13 16 13 M19 18 L25 18 25 24 23 22 21 24 19 22 20.95 20.05 19 18 M11.2 11.7 L8.35 11.7 10.55 16.15 10.65 16.55 10.55 16.95 10.25 17.25 9 17.9 8.4 17.95 8.05 17.6 5.75 13.05 3.4 15.55 3.35 15.65 3 15.8 2.5 15.75 2.35 15.65 2.15 15.45 2 15 2 3.8 2.25 3.3 2.75 3 Q3.1 2.95 3.3 3.2 L11.75 10.35 11.95 10.7 11.95 11.2 11.6 11.65 11.2 11.7 M16 27 L28 27 28 15 16 15 16 27"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 625 B |
18
Packs/Kenney-cursors/Basic/cursor_alias.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://bk43h4lx5uqy"
|
||||
path="res://.godot/imported/cursor_alias.svg-90084228be0536bdb5b75f69ae37f0e1.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/cursor_alias.svg"
|
||||
dest_files=["res://.godot/imported/cursor_alias.svg-90084228be0536bdb5b75f69ae37f0e1.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/cursor_busy.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M15.65 13 L26.4 13 26.8 13.25 27 13.75 27 15.3 27 15.5 26.8 15.8 26.35 16 15.65 16 15.2 15.8 15.05 15.5 15 15.3 15 13.75 15.2 13.25 Q15.4 13 15.65 13 M25.65 17 Q25.5 18.75 24.3 20 L23.05 21 Q23.75 21.35 24.3 21.95 25.5 23.3 25.65 25 L16.35 25 Q16.5 23.3 17.7 21.95 18.25 21.35 18.95 21 L17.7 20 Q16.5 18.75 16.35 17 L25.65 17 M13.2 11.7 L10.35 11.7 12.55 16.15 12.65 16.55 12.55 16.95 12.25 17.25 11 17.9 10.4 17.95 10.05 17.6 7.75 13.05 5.4 15.55 5.35 15.65 5 15.8 4.95 15.8 4.5 15.75 4.35 15.65 4.15 15.45 4 15 4 3.8 4.25 3.3 Q4.4 3.05 4.75 3 L4.95 3 5.3 3.2 13.75 10.35 13.95 10.7 13.95 11.2 13.6 11.65 13.2 11.7 M15.65 26 L26.4 26 26.8 26.25 27 26.5 27 26.75 27 28.3 26.8 28.8 26.35 29 15.65 29 15.2 28.8 15 28.3 15 26.75 15.05 26.5 15.2 26.25 Q15.4 26 15.65 26"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 947 B |
18
Packs/Kenney-cursors/Basic/cursor_busy.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://bhv2dr8ah3jha"
|
||||
path="res://.godot/imported/cursor_busy.svg-ad0fae8f85e44c8e9ee4c7da3199c08f.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/cursor_busy.svg"
|
||||
dest_files=["res://.godot/imported/cursor_busy.svg-ad0fae8f85e44c8e9ee4c7da3199c08f.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/cursor_cogs.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M23.05 17.95 Q22.6 17.5 22.05 17.5 L22 17.5 Q21.4 17.5 21 17.9 L20.95 17.95 20.8 18.1 Q20.5 18.45 20.5 19 L20.5 19.05 Q20.5 19.6 20.85 20 L21 20.15 21.05 20.2 Q21.45 20.5 22 20.5 L22.05 20.5 Q22.6 20.5 23 20.1 L23.1 20 Q23.5 19.6 23.5 19.05 L23.5 19 Q23.5 18.4 23.15 18.05 L23.05 17.95 M26 18 Q26.4 18 26.7 18.3 L27 19 26.7 19.7 26 20 25.35 20 25.1 20.7 25.55 21.15 25.85 21.85 25.55 22.55 24.85 22.85 Q24.45 22.85 24.15 22.55 L23.7 22.1 23 22.35 23 23 22.7 23.7 22 24 Q21.6 24 21.3 23.7 21 23.4 21 23 L21 22.35 20.4 22.1 19.9 22.6 19.15 22.85 18.45 22.55 18.2 21.8 Q18.2 21.4 18.55 21.1 L18.95 20.7 18.65 20 18 20 17.3 19.7 Q17 19.4 17 19 17 18.6 17.3 18.3 17.6 18 18 18 L18.65 18 18.95 17.35 18.5 16.9 18.2 16.2 Q18.2 15.8 18.5 15.5 18.8 15.2 19.2 15.2 19.6 15.2 19.9 15.5 L20.35 15.95 Q20.65 15.75 21 15.65 L21 15 Q21 14.6 21.3 14.3 21.6 14 22 14 22.4 14 22.7 14.3 L23 15 23 15.65 23.75 15.95 24.15 15.5 Q24.45 15.2 24.85 15.2 25.25 15.2 25.55 15.5 L25.85 16.2 25.55 16.9 25.1 17.4 25.4 18 26 18 M14.2 12.7 L11.35 12.7 13.55 17.15 13.65 17.55 13.55 17.95 13.25 18.25 Q12.65 18.6 12 18.9 L11.4 18.95 11.05 18.6 8.75 14.05 6.4 16.55 6.35 16.65 6 16.8 5.5 16.75 5.35 16.65 5.15 16.45 5 16 5 4.8 5.25 4.3 5.75 4 Q6.1 3.95 6.3 4.2 L14.75 11.35 14.95 11.7 14.95 12.2 14.6 12.65 14.2 12.7 M17.15 27.1 Q16.25 28 15 28 13.8 28 12.9 27.1 12 26.25 12 25 12 23.8 12.9 22.9 13.8 22 15 22 16.25 22 17.15 22.9 18 23.8 18 25 18 26.25 17.15 27.1 M16.05 25 L15.75 24.25 15 24 Q14.55 24 14.25 24.25 14 24.55 14 25 14 25.45 14.25 25.75 14.55 26.05 15 26.05 L15.75 25.75 16.05 25"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
18
Packs/Kenney-cursors/Basic/cursor_cogs.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://cwt2ntccy351b"
|
||||
path="res://.godot/imported/cursor_cogs.svg-bed16d70c409fcf95a81b43b10a150b3.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/cursor_cogs.svg"
|
||||
dest_files=["res://.godot/imported/cursor_cogs.svg-bed16d70c409fcf95a81b43b10a150b3.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/cursor_copy.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M16 13 L28 13 Q30 13 30 15 L30 27 Q30 29 28 29 L16 29 Q14 29 14 27 L14 15 Q14 13 16 13 M18 20 L21 20 21 17 23 17 23 20 26 20 26 22 23 22 23 25 21 25 21 22 18 22 18 20 M11.2 11.7 L8.35 11.7 10.55 16.15 10.65 16.55 10.55 16.95 10.25 17.25 9 17.9 8.4 17.95 8.05 17.6 5.75 13.05 3.4 15.55 3.35 15.65 3 15.8 2.5 15.75 2.35 15.65 2.15 15.45 2 15 2 3.8 2.25 3.3 2.75 3 Q3.1 2.95 3.3 3.2 L11.75 10.35 11.95 10.7 11.95 11.2 11.6 11.65 11.2 11.7 M16 27 L28 27 28 15 16 15 16 27"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 649 B |
18
Packs/Kenney-cursors/Basic/cursor_copy.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://bdkdmbywl2d4a"
|
||||
path="res://.godot/imported/cursor_copy.svg-5d96ae4e32bc9da042bea2fcd4d35c17.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/cursor_copy.svg"
|
||||
dest_files=["res://.godot/imported/cursor_copy.svg-5d96ae4e32bc9da042bea2fcd4d35c17.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/cursor_disabled.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M15.65 21 Q15.65 22.5 16.45 23.75 L23.75 16.45 Q22.55 15.7 21 15.7 18.8 15.7 17.25 17.2 L17.2 17.25 Q15.65 18.8 15.65 21 M26.35 21 Q26.35 19.5 25.65 18.3 L18.3 25.65 Q19.5 26.35 21 26.35 23.2 26.35 24.75 24.8 26.35 23.2 26.35 21 M15.35 26.7 L15.25 26.55 Q13 24.2 13 21 13 17.7 15.35 15.35 17.7 13 21 13 24.35 13 26.65 15.35 L26.7 15.4 Q29 17.7 29 21 29 24.3 26.65 26.7 L26.65 26.65 Q24.35 29 21 29 17.7 29 15.35 26.7 M12.2 11.7 L9.35 11.7 11.55 16.15 11.65 16.55 11.55 16.95 11.25 17.25 10 17.9 9.4 17.95 9.05 17.6 6.75 13.05 4.4 15.55 4.35 15.65 4 15.8 3.5 15.75 3.35 15.65 3.15 15.45 3 15 3 3.8 3.25 3.3 Q3.4 3.05 3.75 3 4.1 2.95 4.3 3.2 L12.75 10.35 12.95 10.7 12.95 11.2 12.6 11.65 12.2 11.7"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 877 B |
18
Packs/Kenney-cursors/Basic/cursor_disabled.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://c6liktv5eqdfw"
|
||||
path="res://.godot/imported/cursor_disabled.svg-e7933bc56f46ded9ba67e4309f079021.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/cursor_disabled.svg"
|
||||
dest_files=["res://.godot/imported/cursor_disabled.svg-e7933bc56f46ded9ba67e4309f079021.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/cursor_exclamation.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M24 26 Q24 26.85 23.4 27.4 22.85 28 22 28 21.15 28 20.55 27.4 20 26.85 20 26 20 25.2 20.55 24.6 21.15 24 22 24 22.85 24 23.4 24.6 24 25.2 24 26 M20 14 L24 14 24 23 20 23 20 14 M17.2 11.7 L14.35 11.7 16.55 16.15 16.65 16.55 16.55 16.95 16.25 17.25 15 17.9 14.4 17.95 14.05 17.6 11.75 13.05 9.4 15.55 9.35 15.65 9 15.8 8.5 15.75 8.35 15.65 8.15 15.45 8 15 8 3.8 8.25 3.3 8.75 3 Q9.1 2.95 9.3 3.2 L17.75 10.35 17.95 10.7 17.95 11.2 17.6 11.65 17.2 11.7"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 631 B |
18
Packs/Kenney-cursors/Basic/cursor_exclamation.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://vu3kr40w6lpf"
|
||||
path="res://.godot/imported/cursor_exclamation.svg-09073ad498e747a5a6e8cf8a9728600a.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/cursor_exclamation.svg"
|
||||
dest_files=["res://.godot/imported/cursor_exclamation.svg-09073ad498e747a5a6e8cf8a9728600a.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/cursor_help.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M17 17.8 L17.2 16.85 Q17.6 15.3 18.7 14.25 20.05 13 22.2 13 24.3 13 25.6 14.2 L26.2 14.85 Q27.6 16.75 26.6 19.15 26.15 20.1 25.2 20.85 L24.65 21.45 24.1 22 24.05 22.6 23.95 22.9 23.6 23 20.45 23 20.1 22.9 20 22.6 20 22.2 Q20.05 21.35 20.25 20.9 20.5 20.4 21.25 19.6 L22.7 18.15 22.9 17.55 22.7 16.85 22.65 16.85 22.1 16.6 Q21.75 16.6 21.6 16.85 21.25 17.3 21.2 17.95 L21.2 18 21.15 18.1 21.1 18.15 20.75 18.3 17.45 18.3 17.25 18.25 17.1 18.05 17 17.8 M24 26 Q24 26.8 23.4 27.4 22.8 28 22 28 21.15 28 20.6 27.4 20 26.8 20 26 20 25.15 20.6 24.6 21.15 24 22 24 22.8 24 23.4 24.6 24 25.15 24 26 M14.2 11.7 L11.35 11.7 13.55 16.15 13.65 16.55 13.55 16.95 13.25 17.25 Q12.65 17.6 12 17.9 L11.4 17.95 11.05 17.6 8.75 13.05 6.4 15.55 6.35 15.65 6 15.8 5.5 15.75 5.35 15.65 5.15 15.45 5 15 5 3.8 5.25 3.3 5.75 3 Q6.1 2.95 6.3 3.2 L14.75 10.35 14.95 10.7 14.95 11.2 14.6 11.65 14.2 11.7"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1 KiB |
18
Packs/Kenney-cursors/Basic/cursor_help.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://fe40a4l6qp1o"
|
||||
path="res://.godot/imported/cursor_help.svg-137d3e023cc183dff2394a895b60ff18.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/cursor_help.svg"
|
||||
dest_files=["res://.godot/imported/cursor_help.svg-137d3e023cc183dff2394a895b60ff18.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/cursor_menu.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M16 13 L28 13 Q30 13 30 15 L30 27 Q30 29 28 29 L16 29 Q14 29 14 27 L14 15 Q14 13 16 13 M18 17 L26 17 26 20 18 20 18 17 M11.2 11.7 L8.35 11.7 10.55 16.15 10.65 16.55 10.55 16.95 10.25 17.25 9 17.9 8.4 17.95 8.05 17.6 5.75 13.05 3.4 15.55 3.35 15.65 3 15.8 2.5 15.75 2.35 15.65 2.15 15.45 2 15 2 3.8 2.25 3.3 2.75 3 Q3.1 2.95 3.3 3.2 L11.75 10.35 11.95 10.7 11.95 11.2 11.6 11.65 11.2 11.7 M16 27 L28 27 28 15 16 15 16 27 M18 22 L26 22 26 25 18 25 18 22"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 633 B |
18
Packs/Kenney-cursors/Basic/cursor_menu.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://d4lydug1eo2on"
|
||||
path="res://.godot/imported/cursor_menu.svg-0c10e739e73131f07d4add985d2b1160.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/cursor_menu.svg"
|
||||
dest_files=["res://.godot/imported/cursor_menu.svg-0c10e739e73131f07d4add985d2b1160.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/cursor_none.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M18.05 26.6 L14.6 19.9 11.1 23.65 10.5 24 9.75 23.95 9.25 23.45 9 22.8 9 6.2 Q9 5.75 9.4 5.45 9.65 5.05 10.1 5 10.6 4.95 10.95 5.3 L23.6 15.85 23.95 16.45 23.95 17.2 23.45 17.8 22.8 17.95 18.5 17.95 21.8 24.5 22 25.1 21.8 25.7 21.4 26.15 19.5 27.15 18.65 27.2 Q18.2 27 18.05 26.6"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 461 B |
18
Packs/Kenney-cursors/Basic/cursor_none.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://daucduhpsgf1c"
|
||||
path="res://.godot/imported/cursor_none.svg-9dfc80de9b5158d9f750562067891a62.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/cursor_none.svg"
|
||||
dest_files=["res://.godot/imported/cursor_none.svg-9dfc80de9b5158d9f750562067891a62.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/disabled.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M8 16 Q8 18.25 9.15 20.1 L20.1 9.15 Q18.3 8 16 8 12.7 8 10.35 10.3 L10.3 10.35 Q8 12.7 8 16 M24 16 Q24 13.75 22.95 11.95 L11.95 22.95 Q13.75 24 16 24 19.3 24 21.65 21.65 24 19.25 24 16 M7.5 24.5 L7.35 24.3 Q4 20.8 4 16 4 11.05 7.5 7.5 11.05 4 16 4 21 4 24.5 7.5 L24.55 7.55 Q28 11.05 28 16 28 20.95 24.5 24.5 L24.5 24.45 Q21 28 16 28 11.05 28 7.55 24.55 L7.5 24.5"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 545 B |
18
Packs/Kenney-cursors/Basic/disabled.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://bmjm5bwqi462f"
|
||||
path="res://.godot/imported/disabled.svg-7e8255f4db2e3ecb19c69c7363445e4c.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/disabled.svg"
|
||||
dest_files=["res://.godot/imported/disabled.svg-7e8255f4db2e3ecb19c69c7363445e4c.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/door.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M16 4 Q20.8 4 24.25 7.3 L24.4 7.5 Q27.6 10.6 27.95 14.85 L28 16 28 27 27.95 27.3 27.7 27.7 Q27.4 28 27 28 L25 28 24.3 27.7 Q24 27.4 24 27 L24 16 Q24 12.7 21.65 10.35 L21.6 10.3 21.4 10.2 Q19.15 8 16 8 12.7 8 10.35 10.3 L10.3 10.35 Q8 12.7 8 16 L8 27 7.7 27.7 7 28 5 28 Q4.6 28 4.3 27.7 4 27.4 4 27 L4 16 Q4 11.15 7.35 7.7 L7.5 7.5 7.7 7.35 Q11.15 4 16 4"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 535 B |
18
Packs/Kenney-cursors/Basic/door.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://drnf0oa58yhb3"
|
||||
path="res://.godot/imported/door.svg-35648bcae14d826942fca05d62239586.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/door.svg"
|
||||
dest_files=["res://.godot/imported/door.svg-35648bcae14d826942fca05d62239586.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/door_disabled.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M19.8 24.75 L16 20.95 12.15 24.75 11.5 25 10.7 24.75 9.25 23.3 Q8.95 22.95 9 22.5 9 22.05 9.25 21.8 L13.05 17.95 9.35 14.2 9.05 13.5 Q9.05 13.05 9.35 12.75 L10.8 11.25 Q11.15 10.95 11.55 11 L12.25 11.25 16 15 19.7 11.25 Q19.95 11 20.45 11 20.85 10.95 21.15 11.25 L22.6 12.75 Q22.95 13.05 22.95 13.5 L22.6 14.2 18.9 17.95 22.75 21.8 23 22.5 22.75 23.3 21.25 24.75 20.5 25 19.8 24.75 M16 4 Q20.8 4 24.25 7.3 L24.4 7.5 Q27.6 10.6 27.95 14.85 L28 16 28 27 27.95 27.3 27.7 27.7 Q27.4 28 27 28 L25 28 24.3 27.7 Q24 27.4 24 27 L24 24.9 24.15 24.75 24.3 24.6 Q25.15 23.6 25 22.3 24.95 21.05 24.2 20.4 L24 20.2 24 16 24 15.65 24.05 15.6 Q24.8 14.9 24.95 13.75 L24.95 13.5 Q24.95 12.15 23.9 11.25 L24.05 11.35 22.6 9.85 Q21.65 8.9 20.45 9 L19.9 9.05 Q18.15 8 16 8 13.8 8 12.05 9.05 L11.55 9 Q10.45 8.9 9.5 9.75 L9.35 9.85 7.9 11.35 Q7.05 12.2 7.05 13.5 L7.05 13.75 Q7.2 14.95 7.95 15.65 L8 15.7 8 16 8 20.2 7.85 20.4 Q7.05 21.05 7 22.3 6.85 23.6 7.75 24.6 L7.85 24.75 8 24.9 8 27 7.7 27.7 7 28 5 28 Q4.6 28 4.3 27.7 4 27.4 4 27 L4 16 Q4 11.15 7.35 7.7 L7.5 7.5 7.7 7.35 Q11.15 4 16 4"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
18
Packs/Kenney-cursors/Basic/door_disabled.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://dquvm3i7ilndg"
|
||||
path="res://.godot/imported/door_disabled.svg-625e4330ee0186850ee89a780da417e5.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/door_disabled.svg"
|
||||
dest_files=["res://.godot/imported/door_disabled.svg-625e4330ee0186850ee89a780da417e5.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/door_enter.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M16 4 Q20.8 4 24.25 7.3 L24.4 7.5 Q27.6 10.6 27.95 14.85 L28 16 28 27 27.95 27.3 27.7 27.7 Q27.4 28 27 28 L25 28 24.3 27.7 Q24 27.4 24 27 L24 16 Q24 12.7 21.65 10.35 L21.6 10.3 21.4 10.2 Q19.15 8 16 8 12.7 8 10.35 10.3 L10.3 10.35 Q8 12.7 8 16 L8 27 7.7 27.7 7 28 5 28 Q4.6 28 4.3 27.7 4 27.4 4 27 L4 16 Q4 11.15 7.35 7.7 L7.5 7.5 7.7 7.35 Q11.15 4 16 4 M10 21 L16 13 22 21 18 21 18 26 14 26 14 21 10 21"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 585 B |
18
Packs/Kenney-cursors/Basic/door_enter.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://t5kbpqti2xk0"
|
||||
path="res://.godot/imported/door_enter.svg-9e2bf46f6c5f26a25ced3d8ef97657f2.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/door_enter.svg"
|
||||
dest_files=["res://.godot/imported/door_enter.svg-9e2bf46f6c5f26a25ced3d8ef97657f2.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/door_exit.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M16 4 Q20.8 4 24.25 7.3 L24.4 7.5 Q27.6 10.6 27.95 14.85 L28 16 28 27 27.95 27.3 27.7 27.7 Q27.4 28 27 28 L25 28 24.3 27.7 Q24 27.4 24 27 L24 16 Q24 12.7 21.65 10.35 L21.6 10.3 21.4 10.2 Q19.15 8 16 8 12.7 8 10.35 10.3 L10.3 10.35 Q8 12.7 8 16 L8 27 7.7 27.7 7 28 5 28 Q4.6 28 4.3 27.7 4 27.4 4 27 L4 16 Q4 11.15 7.35 7.7 L7.5 7.5 7.7 7.35 Q11.15 4 16 4 M10 18 L14 18 14 13 18 13 18 18 22 18 16 26 10 18"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 585 B |
18
Packs/Kenney-cursors/Basic/door_exit.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://4tv4boqewlad"
|
||||
path="res://.godot/imported/door_exit.svg-ff961de28b864253674da00d0f39e454.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/door_exit.svg"
|
||||
dest_files=["res://.godot/imported/door_exit.svg-ff961de28b864253674da00d0f39e454.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/dot_large.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M20 16 Q20 17.65 18.8 18.8 17.65 20 16 20 14.35 20 13.15 18.8 12 17.65 12 16 12 14.35 13.15 13.15 14.35 12 16 12 17.65 12 18.8 13.15 20 14.35 20 16"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 329 B |
18
Packs/Kenney-cursors/Basic/dot_large.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://3vssvnnqrawg"
|
||||
path="res://.godot/imported/dot_large.svg-bfa7e6aaeceb802fbb2e425fdeb2ffd3.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/dot_large.svg"
|
||||
dest_files=["res://.godot/imported/dot_large.svg-bfa7e6aaeceb802fbb2e425fdeb2ffd3.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/dot_small.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M16 18 Q15.15 18 14.6 17.4 14 16.8 14 16 14 15.15 14.6 14.55 15.15 14 16 14 16.85 14 17.45 14.55 18 15.15 18 16 18 16.8 17.45 17.4 16.85 18 16 18"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 327 B |
18
Packs/Kenney-cursors/Basic/dot_small.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://ws14c2vl4eko"
|
||||
path="res://.godot/imported/dot_small.svg-34bfe02ffb6c707fbfefc39c0a6a4a09.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/dot_small.svg"
|
||||
dest_files=["res://.godot/imported/dot_small.svg-34bfe02ffb6c707fbfefc39c0a6a4a09.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
12
Packs/Kenney-cursors/Basic/drawing_brush.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.00701904296875 0.0070037841796875 -0.0071868896484375 0.007171630859375 11.55 12.4)" id="gradient0">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M22.7 20.55 Q22.1 19.95 21.25 20 20.45 20 19.85 20.6 19.25 21.2 19.25 22 19.25 22.8 19.85 23.4 20.45 24 21.25 24 22.05 24 22.65 23.4 23.25 22.8 23.25 22 23.3 21.15 22.7 20.55 M24.15 19.1 Q25.3 20.25 25.3 21.95 25.3 23.65 24.15 24.8 23 25.95 21.3 25.95 19.6 25.95 18.45 24.8 L14.2 20.55 Q11.35 23.4 8.55 20.6 L19.85 9.3 Q22.6 12.05 19.9 14.85 L24.15 19.1"/>
|
||||
<path stroke="none" fill="url(#gradient0)" d="M14.15 3.65 L18.4 7.85 7.1 19.15 2.85 14.95 Q1.45 13.5 2.85 12.1 L7.95 7 8.15 7.1 10.5 7.55 11.05 7.5 11.15 6.9 10.7 4.55 10.6 4.35 11.35 3.6 14.15 3.65"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
18
Packs/Kenney-cursors/Basic/drawing_brush.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://clqe0xv46pok5"
|
||||
path="res://.godot/imported/drawing_brush.svg-01113287b2c171ad8d20b3520d2de8d6.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/drawing_brush.svg"
|
||||
dest_files=["res://.godot/imported/drawing_brush.svg-01113287b2c171ad8d20b3520d2de8d6.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
12
Packs/Kenney-cursors/Basic/drawing_brush_large.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.0127410888671875 0 0 0.012115478515625 10.55 10.05)" id="gradient0">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g>
|
||||
<path stroke="none" fill="url(#gradient0)" d="M10.05 3 L12.3 0.75 Q13.65 -0.5 15 0.9 L20.7 6.55 21 6.85 19.95 5.85 5.85 20 0.85 15.05 Q-0.6 13.6 0.9 12.15 L7.35 5.7 7.6 5.8 9.95 6.2 10.5 6.15 Q10.7 6 10.55 5.6 L10.1 3.25 10.05 3"/>
|
||||
<path stroke="none" fill="#FFFFFF" d="M26.4 20.65 Q27.55 21.8 27.5 23.45 27.55 25.1 26.4 26.3 25.2 27.45 23.5 27.45 21.9 27.45 20.75 26.3 L13.65 19.2 12.2 20.65 Q9.75 23.1 7.3 21.35 L21.35 7.3 Q23.1 9.75 20.7 12.15 L19.3 13.55 26.4 20.65 M24.95 22.1 Q24.35 21.5 23.5 21.45 22.7 21.45 22.1 22.05 21.5 22.65 21.45 23.5 21.55 24.35 22.15 24.95 22.75 25.55 23.45 25.5 24.35 25.5 24.95 24.9 25.55 24.3 25.5 23.45 25.55 22.7 24.95 22.1"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
18
Packs/Kenney-cursors/Basic/drawing_brush_large.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://7as2esnqr7wq"
|
||||
path="res://.godot/imported/drawing_brush_large.svg-50fd57c4a50e8d71ea3b46a0deb2d5b7.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/drawing_brush_large.svg"
|
||||
dest_files=["res://.godot/imported/drawing_brush_large.svg-50fd57c4a50e8d71ea3b46a0deb2d5b7.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/drawing_bucket.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M10.1 23.45 Q10.1 24.9 9.05 25.95 8.05 27 6.55 27 5.1 27 4.05 25.95 3 24.9 3 23.45 L3 16.35 Q3 14.9 4.05 13.8 L4.7 13.3 11.7 9.35 16.15 4.85 Q17.55 3.45 18.95 4.85 L19.5 5.4 22.25 5 22.3 5 Q25.6 4.95 26.75 7.05 L26.8 7.05 Q28 9.05 26.35 11.95 L26.3 12 26.25 12.15 28.85 14.75 Q31.7 17.6 28.9 20.4 L21.4 27.9 Q18.55 30.75 15.7 27.9 L10.1 22.3 10.1 23.45 M7.25 16.55 L17.15 26.45 20 26.5 27.5 19 Q28.9 17.6 27.45 16.15 L25 13.7 Q23.65 15.15 21.7 16.3 L19 17.5 Q18.9 18.6 18.1 19.35 17.25 20.2 16 20.2 14.75 20.2 13.9 19.35 13 18.45 13 17.25 13 16 13.85 15.15 14.75 14.3 16 14.25 17.25 14.25 18.15 15.15 L18.5 15.55 Q19.6 15.15 20.7 14.55 L23.6 12.3 17.55 6.25 7.25 16.55 M25.05 8.05 Q24.3 6.95 22.35 7 L21.2 7.1 24.75 10.65 Q25.55 9.15 25.05 8.05"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 926 B |
18
Packs/Kenney-cursors/Basic/drawing_bucket.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://c0qesm3ejehqd"
|
||||
path="res://.godot/imported/drawing_bucket.svg-5a65c68d6cfb8b032aba26b3008c48e4.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/drawing_bucket.svg"
|
||||
dest_files=["res://.godot/imported/drawing_bucket.svg-5a65c68d6cfb8b032aba26b3008c48e4.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/drawing_eraser.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M3.9 11.35 L12.1 5.6 Q13.75 4.45 15.15 5.85 L27.85 18.6 Q29.3 20 27.65 21.15 L19.45 26.9 Q17.85 28.05 16.4 26.65 L3.7 13.9 Q2.3 12.5 3.9 11.35 M13.5 7 L5.3 12.75 11.65 19.15 19.85 13.35 13.5 7"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 374 B |
18
Packs/Kenney-cursors/Basic/drawing_eraser.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://dyvi17hiehiuw"
|
||||
path="res://.godot/imported/drawing_eraser.svg-bded0147355728e8136ff5d27e20e91a.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/drawing_eraser.svg"
|
||||
dest_files=["res://.godot/imported/drawing_eraser.svg-bded0147355728e8136ff5d27e20e91a.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
12
Packs/Kenney-cursors/Basic/drawing_pen.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(-0.0042724609375 -0.0042724609375 0.0034027099609375 -0.0034027099609375 14.55 23.4)" id="gradient0">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M12.35 19.45 L6 13.1 6 6 13.1 6 27.2 20.15 Q27.8 20.75 27.75 21.55 27.8 22.35 27.25 22.95 L23 27.25 Q22.35 27.85 21.5 27.8 20.7 27.85 20.1 27.25 L19.5 26.65 12.35 19.45 M8.05 12.3 L9.6 13.85 13.8 9.6 12.25 8.05 8 8 8.05 12.3 M15.25 11.05 L11.05 15.3 18.8 23.05 23 18.8 15.25 11.05"/>
|
||||
<path stroke="none" fill="url(#gradient0)" d="M19.5 26.65 Q18.05 28.05 16.65 26.55 L9.6 19.5 12.35 19.45 19.5 26.65"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 929 B |
18
Packs/Kenney-cursors/Basic/drawing_pen.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://s55rlf63y8pb"
|
||||
path="res://.godot/imported/drawing_pen.svg-450d6dff4270906bf95bcd7176c541ae.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/drawing_pen.svg"
|
||||
dest_files=["res://.godot/imported/drawing_pen.svg-450d6dff4270906bf95bcd7176c541ae.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
6
Packs/Kenney-cursors/Basic/drawing_pencil.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs/>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M28.45 21.4 Q29.05 22 29 22.85 29.05 23.65 28.45 24.25 L24.2 28.5 Q23.6 29.1 22.75 29.1 22 29.1 21.4 28.5 L7.25 14.35 7.25 10.1 6.55 9.4 Q5.95 8.8 6 7.95 5.95 7.1 6.5 6.55 7.1 5.95 7.95 6 8.8 5.95 9.4 6.55 L10.15 7.3 14.3 7.25 28.45 21.4 M19.95 24.2 L24.2 19.95 22.8 18.55 18.55 22.8 19.95 24.2 M9.25 13.5 L10.05 14.3 14.3 10.05 13.5 9.25 9.25 9.3 9.25 13.5 M17.15 21.4 L21.4 17.15 15.75 11.5 11.5 15.75 17.15 21.4"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 596 B |
18
Packs/Kenney-cursors/Basic/drawing_pencil.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://dkah5kcyym0bt"
|
||||
path="res://.godot/imported/drawing_pencil.svg-53e106125446ac4e7f8f5eaec0978b3e.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/drawing_pencil.svg"
|
||||
dest_files=["res://.godot/imported/drawing_pencil.svg-53e106125446ac4e7f8f5eaec0978b3e.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
12
Packs/Kenney-cursors/Basic/drawing_picker.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(-0.003448486328125 -0.003448486328125 0.003448486328125 -0.003448486328125 22.6 22.6)" id="gradient0">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M19.05 24.75 L16.25 24.7 14.75 23.2 Q13.45 21.85 14.8 20.5 L7.05 12.7 Q5.9 11.55 5.9 9.9 L6 8.8 5.65 8.45 Q5.05 7.85 5 7.05 5.05 6.2 5.65 5.6 6.25 5 7.05 5 7.85 5 8.45 5.6 L8.75 6.05 9.85 5.9 Q11.55 5.9 12.7 7.05 L20.45 14.85 Q21.8 13.5 23.25 14.7 L23.95 15.4 24.05 15.5 24.75 16.2 Q26.15 17.6 24.7 19.05 L24.7 19.1 19.05 24.75 M16.25 19.1 L19.05 16.25 11.3 8.45 Q10.75 7.9 9.95 7.9 L9.85 7.9 9.25 8 8.05 7.9 7.75 7.7 7.9 8.05 Q8.1 8.65 7.95 9.3 L7.95 9.9 Q7.95 10.75 8.5 11.3 L16.25 19.1"/>
|
||||
<path stroke="none" fill="url(#gradient0)" d="M24.7 19.1 L25.4 19.8 Q26.6 20.95 26.55 22.6 26.6 24.25 25.45 25.4 24.3 26.6 22.6 26.6 20.95 26.6 19.75 25.45 L19.05 24.75 24.7 19.1"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
18
Packs/Kenney-cursors/Basic/drawing_picker.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://cvfqlerwy6yow"
|
||||
path="res://.godot/imported/drawing_picker.svg-2f6f1cee362c25ca94883d7d4a0deaed.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/drawing_picker.svg"
|
||||
dest_files=["res://.godot/imported/drawing_picker.svg-2f6f1cee362c25ca94883d7d4a0deaed.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
17
Packs/Kenney-cursors/Basic/drawing_spray.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0 -0.0181884765625 0.007476806640625 0 15.95 22.9)" id="gradient0">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.003173828125 0 0 0.00244140625 11.25 7.15)" id="gradient1">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g>
|
||||
<path stroke="none" fill="#FFFFFF" d="M12 5 Q12 3 14 3 L18 3 Q20 3 20 5 L20 8.15 23.45 11.6 Q24 12.15 24 13 24 13.85 23.45 14.45 L23 14.8 22 15 10 15 9 14.75 8.6 14.45 Q8 13.85 8 13 8 12.15 8.6 11.6 L11.2 9 12 8.2 12 5"/>
|
||||
<path stroke="none" fill="url(#gradient0)" d="M23 25 Q23 29 19 29 L12.6 29 Q9 28.8 9 25 L9 17 9 16.75 10 17 22 17 23 16.8 23 17 23 25"/>
|
||||
<path stroke="none" fill="url(#gradient1)" d="M11.2 9 L9 9 Q8 9 8 8 L8 6 Q8 5 9 5 L12 5 12 8.2 11.2 9"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
18
Packs/Kenney-cursors/Basic/drawing_spray.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://cmtygjvufwyui"
|
||||
path="res://.godot/imported/drawing_spray.svg-2e906e104ca6981d85032e740d27fa77.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/drawing_spray.svg"
|
||||
dest_files=["res://.godot/imported/drawing_spray.svg-2e906e104ca6981d85032e740d27fa77.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
17
Packs/Kenney-cursors/Basic/gauntlet_default.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.0061798095703125 0.0080413818359375 -0.0072021484375 0.0055694580078125 19.25 18.3)" id="gradient0">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.0029754638671875 0.0051727294921875 -0.004364013671875 0.0025177001953125 10.45 7.75)" id="gradient1">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g>
|
||||
<path stroke="none" fill="url(#gradient0)" d="M23.15 14 L29.8 19.9 30 20.35 29.9 20.8 Q25.3 27.85 15.55 29 L15.1 28.9 14.8 28.45 13.4 19.65 13.35 19.6 Q17.85 15.35 23.15 14"/>
|
||||
<path stroke="none" fill="url(#gradient1)" d="M7.35 11.2 Q5.5 8.7 2.85 6.65 2.15 6.1 2.05 5.3 1.9 4.45 2.45 3.8 2.95 3.1 3.8 3 4.65 2.85 5.3 3.4 L8.25 5.95 8.25 5.8 Q8.2 4.95 8.8 4.35 9.4 3.75 10.25 3.7 11.1 3.7 11.7 4.25 L13.05 5.7 Q13.2 5.15 13.6 4.7 14.15 4.1 15 4.05 15.85 4.05 16.5 4.65 L17.6 5.8 Q12.1 7.2 7.35 11.2"/>
|
||||
<path stroke="none" fill="#FFFFFF" d="M7.35 11.2 Q12.1 7.2 17.6 5.8 21 8.7 23.15 14 17.85 15.35 13.35 19.6 L13.3 19.6 Q11.4 19.75 9 18.65 L8.9 18.6 8.95 18.6 Q6.55 17.45 3.7 14.6 3.1 14 3.1 13.2 L3.1 13.15 Q3.05 12.3 3.65 11.7 4.25 11.1 5.1 11.1 5.95 11.05 6.55 11.7 L7.4 12.45 7.7 12.05 7.7 12 7.35 11.25 7.35 11.2"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
18
Packs/Kenney-cursors/Basic/gauntlet_default.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://4ehy04845grx"
|
||||
path="res://.godot/imported/gauntlet_default.svg-f6ec343648cfe49379365dae60f3f2fb.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/gauntlet_default.svg"
|
||||
dest_files=["res://.godot/imported/gauntlet_default.svg-f6ec343648cfe49379365dae60f3f2fb.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
17
Packs/Kenney-cursors/Basic/gauntlet_open.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.0061798095703125 0.00787353515625 -0.0072021484375 0.0054473876953125 18.4 19.4)" id="gradient0">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.0029754638671875 0.00506591796875 -0.004364013671875 0.002471923828125 10.45 9.25)" id="gradient1">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g>
|
||||
<path stroke="none" fill="url(#gradient0)" d="M23.15 15.35 L29.8 21.15 30 21.6 29.9 22.05 Q25.3 28.9 15.55 30.05 L15.1 29.95 14.8 29.5 13.3 20.85 13.35 20.85 Q17.85 16.7 23.15 15.35"/>
|
||||
<path stroke="none" fill="url(#gradient1)" d="M7.35 12.6 L7.15 12.35 Q5.35 10.05 2.85 8.15 2.15 7.6 2.05 6.8 1.9 6 2.45 5.35 2.95 4.65 3.8 4.55 4.65 4.4 5.3 4.95 L8.25 7.45 6.7 5.25 Q6.15 4.5 6.25 3.75 6.3 2.9 7.05 2.4 7.7 1.85 8.55 1.95 9.45 2.05 9.9 2.75 L12.1 5.9 12.15 5.95 12.2 5.95 12.3 6 11.8 5 Q11.35 4.15 11.6 3.4 11.8 2.55 12.6 2.2 L14.15 2.05 Q15 2.25 15.35 3 L17.6 7.3 Q13.85 8.25 10.4 10.4 L7.35 12.6"/>
|
||||
<path stroke="none" fill="#FFFFFF" d="M7.35 12.6 L10.4 10.4 Q13.85 8.25 17.6 7.3 21 10.15 23.15 15.35 17.85 16.7 13.35 20.85 L13.3 20.85 Q12.5 19.85 9.05 19 6.75 18.4 3.85 16.75 3.1 16.3 2.9 15.55 L2.9 15.5 Q2.65 14.7 3.05 14.05 3.5 13.25 4.3 13.05 5.15 12.8 5.85 13.3 7.5 13.5 7.35 12.6"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
18
Packs/Kenney-cursors/Basic/gauntlet_open.svg.import
Normal file
|
@ -0,0 +1,18 @@
|
|||
[remap]
|
||||
|
||||
importer="svg"
|
||||
type="SVGTexture"
|
||||
uid="uid://gkk8fnei0a66"
|
||||
path="res://.godot/imported/gauntlet_open.svg-b007d15cc926155e1f979395d2ff940c.svgtex"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Packs/Kenney-cursors/Basic/gauntlet_open.svg"
|
||||
dest_files=["res://.godot/imported/gauntlet_open.svg-b007d15cc926155e1f979395d2ff940c.svgtex"]
|
||||
|
||||
[params]
|
||||
|
||||
base_scale=1.0
|
||||
saturation=1.0
|
||||
color_map={}
|
||||
compress=true
|
17
Packs/Kenney-cursors/Basic/gauntlet_point.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.0061798095703125 0.0080413818359375 -0.0072021484375 0.0055694580078125 18.8 17.35)" id="gradient0">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" x1="-819.2" x2="819.2" spreadMethod="pad" gradientTransform="matrix(0.0029754638671875 0.0051727294921875 -0.004364013671875 0.0025177001953125 10.45 7.75)" id="gradient1">
|
||||
<stop offset="0" stop-color="#FFFFFF"/>
|
||||
<stop offset="1" stop-color="#CCCCCC"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g>
|
||||
<path stroke="none" fill="url(#gradient0)" d="M23.15 14 L29.8 19.9 30 20.35 29.9 20.8 Q25.3 27.85 15.55 29 L15.1 28.9 14.8 28.45 13.35 19.6 Q17.85 15.35 23.15 14"/>
|
||||
<path stroke="none" fill="#FFFFFF" d="M23.15 14 Q17.85 15.35 13.35 19.6 12.45 17.45 11.2 16.65 9.4 15.45 7.65 15.8 L4.9 16.3 Q4.05 16.4 3.4 15.9 2.75 15.4 2.65 14.6 2.5 13.75 3.05 13.1 3.5 12.45 4.35 12.35 L6.4 11.95 6.6 11.9 6.85 11.7 7.35 11.2 10.4 8.95 Q12.65 7.5 15.05 6.6 L17.6 5.8 18.5 6.6 Q21.3 9.4 23.15 14"/>
|
||||
<path stroke="none" fill="url(#gradient1)" d="M6.85 11.7 Q7.1 11.25 6.75 10.45 L5.55 9.1 2.85 6.65 Q2.15 6.1 2.05 5.3 1.9 4.45 2.45 3.8 2.95 3.1 3.8 3 4.65 2.85 5.3 3.4 L8.25 5.95 Q9.45 3.3 12.1 4.35 L12.15 4.4 12.2 4.4 12.3 4.45 12.3 4.4 Q15.65 2.95 17.6 5.8 L15.05 6.6 Q12.65 7.5 10.4 8.95 L7.35 11.2 6.85 11.7"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |