Replace icons with high-quality ones

This commit is contained in:
Mutzi 2024-03-22 09:30:01 +01:00
parent afab78db12
commit f0348472b6
Signed by: root
GPG Key ID: 2437494E09F13876
334 changed files with 2137 additions and 1877 deletions

90
.gitignore vendored
View File

@ -2,3 +2,93 @@
.godot/
export/
# Mono-specific ignores
.mono/
data_*/
mono_crash.*.json
# Created by https://www.toptal.com/developers/gitignore/api/rider
# Edit at https://www.toptal.com/developers/gitignore?templates=rider
### Rider ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
# AWS User-specific
.idea/**/aws.xml
# Generated files
.idea/**/contentModel.xml
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
cmake-build-*/
# Mongo Explorer plugin
.idea/**/mongoSettings.xml
# File-based project format
*.iws
# IntelliJ
out/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Cursive Clojure plugin
.idea/replstate.xml
# SonarLint plugin
.idea/sonarlint/
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Editor-based Rest Client
.idea/httpRequests
# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser
# End of https://www.toptal.com/developers/gitignore/api/rider

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.11" />
</component>
</project>

11
Main Normal file
View File

@ -0,0 +1,11 @@
{
"disabled_build_options": {
"disable_3d": true,
"disable_3d_physics": true,
"openxr": false
},
"disabled_classes": [
"Node3D"
],
"type": "build_profile"
}

104
assets/gems/convert.py Normal file
View File

@ -0,0 +1,104 @@
import multiprocessing
import cv2
import pathlib
import numpy
from kivy.app import App
from kivy.uix.label import Label
from kivy.uix.image import Image
from kivy.uix.behaviors.button import ButtonBehavior
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.gridlayout import GridLayout
from kivy.graphics.texture import Texture
bg = numpy.array([27, 27, 27])
colors = [
(numpy.array([213, 182, 93]), numpy.array([255, 255, 255])),
(numpy.array([ 78, 189, 207]), numpy.array([255, 255, 255])),
(numpy.array([ 83, 131, 63]), numpy.array([255, 255, 255])),
(numpy.array([203, 76, 62]), numpy.array([255, 255, 255]))
]
raw_dir = pathlib.Path('raw')
icons_dir = pathlib.Path('icons')
def make_img(img, c):
rc = c[0]
gc = c[1]
for row in img:
for i in range(len(row)):
pix = row[i]
rv = pix[0] / 255
gv = pix[1] / 255
row[i] = rv * rc + gv * gc + (1 - rv - gv) * bg
return cv2.flip(img, 0)
class Im(ButtonBehavior, Image):
def __init__(self, color):
ButtonBehavior.__init__(self)
Image.__init__(self, size=(256, 256), size_hint=(256, 256))
self.name = None
self.mc = color
def update(self, img, name):
self.name = name
tex: Texture = Texture.create(size=(img.shape[1], img.shape[0]), colorfmt='rgb')
tex.blit_buffer(img.tobytes(), colorfmt='rgb', bufferfmt='ubyte')
self.texture = tex
def on_press(self):
self.texture.save(f'icons/{self.name}')
app.update()
class MainApp(App):
def build(self):
self.imgs = pathlib.Path('raw').glob('*.png')
self.img: pathlib.Path = None
self.label = Label(font_size=48)
self.im = [Im(c) for c in colors]
self.pool = multiprocessing.Pool(4)
gl = GridLayout(cols=2)
for i in self.im:
gl.add_widget(i)
bl = BoxLayout(orientation='vertical')
bl.add_widget(self.label)
bl.add_widget(gl)
self.update()
return bl
def update(self):
self.img: pathlib.Path = next(self.imgs)
if self.img is None:
exit(0)
if (icons_dir / self.img.name).exists():
self.update()
return
self.label.text = str(self.img.name)[:-4]
i = cv2.imread(str(self.img))
i = cv2.cvtColor(i, cv2.COLOR_BGR2RGB)
print('updating')
imgs = self.pool.starmap(make_img, [
(i, colors[0]),
(i, colors[1]),
(i, colors[2]),
(i, colors[3])
])
for j in range(4):
self.im[j].update(imgs[j], self.img.name)
app = MainApp()
if __name__ == '__main__':
icons_dir.mkdir(exist_ok=True)
app.run()

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ufo0206j1aot"
path="res://.godot/imported/am_rifle.png-f658da681e4d2d5fa58099ec6afeec6f.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/am_rifle.png"
dest_files=["res://.godot/imported/am_rifle.png-f658da681e4d2d5fa58099ec6afeec6f.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cbogsci4xev2"
path="res://.godot/imported/ap_mines.png-efea0e333e1a8cc8c1caac90d6faf637.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/ap_mines.png"
dest_files=["res://.godot/imported/ap_mines.png-efea0e333e1a8cc8c1caac90d6faf637.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://83cr0etntvx2"
path="res://.godot/imported/arc_thrower.png-a483a88309e2a6bfa03191b558edbfb9.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/arc_thrower.png"
dest_files=["res://.godot/imported/arc_thrower.png-a483a88309e2a6bfa03191b558edbfb9.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -2,16 +2,16 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bxj4rdx3pyglo"
path="res://.godot/imported/AX-AR-23icon.png-762805e18cb86f6d77ff147f0bc7d62e.ctex"
uid="uid://sfek54pe5hah"
path="res://.godot/imported/autocannon.png-032a9866f392efbb6dad9bc3f44f218c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://game/gems/AX-AR-23icon.png"
dest_files=["res://.godot/imported/AX-AR-23icon.png-762805e18cb86f6d77ff147f0bc7d62e.ctex"]
source_file="res://assets/gems/icons/autocannon.png"
dest_files=["res://.godot/imported/autocannon.png-032a9866f392efbb6dad9bc3f44f218c.ctex"]
[params]

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://8cete7b3xneq"
path="res://.godot/imported/autocannon_sentry.png-f7222174cedb2809874b80f967a8f85e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/autocannon_sentry.png"
dest_files=["res://.godot/imported/autocannon_sentry.png-f7222174cedb2809874b80f967a8f85e.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://1klwg37qsn1k"
path="res://.godot/imported/eagle_110_rocket.png-6094146043745ac66d8aa530bbe3fe52.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/eagle_110_rocket.png"
dest_files=["res://.godot/imported/eagle_110_rocket.png-6094146043745ac66d8aa530bbe3fe52.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bt2078stfywf4"
path="res://.godot/imported/eagle_500.png-506116a1cb66db312ab5e1900853d881.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/eagle_500.png"
dest_files=["res://.godot/imported/eagle_500.png-506116a1cb66db312ab5e1900853d881.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://blndh1n8s2vrm"
path="res://.godot/imported/eagle_airstrike.png-59b4e89a44d44bd0e7ea911de43992bf.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/eagle_airstrike.png"
dest_files=["res://.godot/imported/eagle_airstrike.png-59b4e89a44d44bd0e7ea911de43992bf.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dh3quwri1xkcn"
path="res://.godot/imported/eagle_cluster.png-d8729aebd7815818397fcd3428d11176.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/eagle_cluster.png"
dest_files=["res://.godot/imported/eagle_cluster.png-d8729aebd7815818397fcd3428d11176.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://csm7avnpvqyj0"
path="res://.godot/imported/eagle_napalm.png-7d1d88453ea6039edb30a62b4f12a630.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/eagle_napalm.png"
dest_files=["res://.godot/imported/eagle_napalm.png-7d1d88453ea6039edb30a62b4f12a630.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://y65256kciq3m"
path="res://.godot/imported/eagle_rearm.png-505b43daebf22812d0839599f498144f.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/eagle_rearm.png"
dest_files=["res://.godot/imported/eagle_rearm.png-505b43daebf22812d0839599f498144f.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://de1d3dul7xnqf"
path="res://.godot/imported/eagle_smoke.png-3819851409531398d56990ad74c6e1c8.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/eagle_smoke.png"
dest_files=["res://.godot/imported/eagle_smoke.png-3819851409531398d56990ad74c6e1c8.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cvcty1op3pvm"
path="res://.godot/imported/eagle_strafing.png-4b6a1bf98672c66d8cdde65ec745ebe8.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/eagle_strafing.png"
dest_files=["res://.godot/imported/eagle_strafing.png-4b6a1bf98672c66d8cdde65ec745ebe8.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dlpske6no5oa6"
path="res://.godot/imported/ems_mortar_sentry.png-26a4a555e0a4f6798b382c6f6b0d4c3a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/ems_mortar_sentry.png"
dest_files=["res://.godot/imported/ems_mortar_sentry.png-26a4a555e0a4f6798b382c6f6b0d4c3a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b0nod5awcxjld"
path="res://.godot/imported/exo_suit.png-58205f2e1c3ee28c326371b25100cf16.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/exo_suit.png"
dest_files=["res://.godot/imported/exo_suit.png-58205f2e1c3ee28c326371b25100cf16.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d0v6lahnn5701"
path="res://.godot/imported/expendable_at.png-6485b0e678a67b7228ec56c9a9eb605e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/expendable_at.png"
dest_files=["res://.godot/imported/expendable_at.png-6485b0e678a67b7228ec56c9a9eb605e.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b6nphsuda1glu"
path="res://.godot/imported/flamethrower.png-82cf3ee86658b204a4e2e16de0a12b40.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/flamethrower.png"
dest_files=["res://.godot/imported/flamethrower.png-82cf3ee86658b204a4e2e16de0a12b40.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cycocmbsc546r"
path="res://.godot/imported/gatling_sentry.png-1db2aa361aa6e6c6c51d1ac70edef3cb.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/gatling_sentry.png"
dest_files=["res://.godot/imported/gatling_sentry.png-1db2aa361aa6e6c6c51d1ac70edef3cb.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c11mkr7vsy8o"
path="res://.godot/imported/grenade_launcher.png-71f3a9b5175397b27f23ede60db62167.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/grenade_launcher.png"
dest_files=["res://.godot/imported/grenade_launcher.png-71f3a9b5175397b27f23ede60db62167.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://benl7bclpaora"
path="res://.godot/imported/guard_dog.png-21dd14db4d56453b09ddfee88d757633.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/guard_dog.png"
dest_files=["res://.godot/imported/guard_dog.png-21dd14db4d56453b09ddfee88d757633.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c8uutv3cispgl"
path="res://.godot/imported/guard_dog_rover.png-311d19d8ace9b0735e466f15ecab7d44.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/guard_dog_rover.png"
dest_files=["res://.godot/imported/guard_dog_rover.png-311d19d8ace9b0735e466f15ecab7d44.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dh7w2uvs1g0c0"
path="res://.godot/imported/hellbomb.png-ef728cc27d4a352ec0209df99b69e6f7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/hellbomb.png"
dest_files=["res://.godot/imported/hellbomb.png-ef728cc27d4a352ec0209df99b69e6f7.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bdje6ws3mrepo"
path="res://.godot/imported/hmg_emplacement.png-8c6f4c967ff27d456d6f45ea8623d28a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/hmg_emplacement.png"
dest_files=["res://.godot/imported/hmg_emplacement.png-8c6f4c967ff27d456d6f45ea8623d28a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -2,16 +2,16 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://dq4a2iu6ebda0"
path="res://.godot/imported/Orbital120icon.png-3aaeb0e65d3b9db24c836242d028e2f8.ctex"
uid="uid://bwv68iup6frv"
path="res://.godot/imported/illumination_flare.png-c4566ea30f789e93460c2735dd3d34c7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://game/gems/Orbital120icon.png"
dest_files=["res://.godot/imported/Orbital120icon.png-3aaeb0e65d3b9db24c836242d028e2f8.ctex"]
source_file="res://assets/gems/icons/illumination_flare.png"
dest_files=["res://.godot/imported/illumination_flare.png-c4566ea30f789e93460c2735dd3d34c7.ctex"]
[params]

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bupt6ljljpj62"
path="res://.godot/imported/incendiary_mines.png-8fc3d9542fd307568ee28feb0511a3cf.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/incendiary_mines.png"
dest_files=["res://.godot/imported/incendiary_mines.png-8fc3d9542fd307568ee28feb0511a3cf.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cojub2u602d6p"
path="res://.godot/imported/jump_pack.png-865d3c63128c360f9a5170575bc2ab95.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/jump_pack.png"
dest_files=["res://.godot/imported/jump_pack.png-865d3c63128c360f9a5170575bc2ab95.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cdtdttndyw3lu"
path="res://.godot/imported/laser_cannon.png-144c09be75dca3715decd208855edd9e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/laser_cannon.png"
dest_files=["res://.godot/imported/laser_cannon.png-144c09be75dca3715decd208855edd9e.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dik3nbu6sglhq"
path="res://.godot/imported/machine_gun.png-b6a366b90cbcc7e94f8dc1916cca8f6d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/machine_gun.png"
dest_files=["res://.godot/imported/machine_gun.png-b6a366b90cbcc7e94f8dc1916cca8f6d.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dlp4e4mosbw7m"
path="res://.godot/imported/mg_sentry.png-d236b9f0044ba0660bf2a5fbfbb0c736.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/mg_sentry.png"
dest_files=["res://.godot/imported/mg_sentry.png-d236b9f0044ba0660bf2a5fbfbb0c736.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://xja0ks6t4qvt"
path="res://.godot/imported/mortar_sentry.png-14d1a5fcde22ebb63ed429df133edfda.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/mortar_sentry.png"
dest_files=["res://.godot/imported/mortar_sentry.png-14d1a5fcde22ebb63ed429df133edfda.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -2,16 +2,16 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://da5tgeq2aws0c"
path="res://.godot/imported/ARC-3icon.png-6d326e35db3ca80f6344442d0541fbca.ctex"
uid="uid://p7yfnxolxrno"
path="res://.godot/imported/orb_120.png-72064318f3e0b5c985a99112447140f7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://game/gems/ARC-3icon.png"
dest_files=["res://.godot/imported/ARC-3icon.png-6d326e35db3ca80f6344442d0541fbca.ctex"]
source_file="res://assets/gems/icons/orb_120.png"
dest_files=["res://.godot/imported/orb_120.png-72064318f3e0b5c985a99112447140f7.ctex"]
[params]

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -2,16 +2,16 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://bwduje2dvytv6"
path="res://.godot/imported/AC-8icon.png-5c81b88d879638015d116e06c450075d.ctex"
uid="uid://xu56w2cisg30"
path="res://.godot/imported/orb_380.png-d064d1f7ce0ab7a64411baeb9b1b6edc.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://game/gems/AC-8icon.png"
dest_files=["res://.godot/imported/AC-8icon.png-5c81b88d879638015d116e06c450075d.ctex"]
source_file="res://assets/gems/icons/orb_380.png"
dest_files=["res://.godot/imported/orb_380.png-d064d1f7ce0ab7a64411baeb9b1b6edc.ctex"]
[params]

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://kf3sdssdb852"
path="res://.godot/imported/orb_airburst.png-28ae89247e61a304d640e9600e81d919.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/orb_airburst.png"
dest_files=["res://.godot/imported/orb_airburst.png-28ae89247e61a304d640e9600e81d919.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://djn105l4iri52"
path="res://.godot/imported/orb_ems.png-90fb02ebab641de9919ab9cb9fb6e748.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/orb_ems.png"
dest_files=["res://.godot/imported/orb_ems.png-90fb02ebab641de9919ab9cb9fb6e748.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -2,16 +2,16 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://1alruwghamqv"
path="res://.godot/imported/APW-1icon.png-519ee80844a3d79d79901639d1904a29.ctex"
uid="uid://6utelelrfx4p"
path="res://.godot/imported/orb_gas.png-66581c15804db15c61a5ede0720398e4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://game/gems/APW-1icon.png"
dest_files=["res://.godot/imported/APW-1icon.png-519ee80844a3d79d79901639d1904a29.ctex"]
source_file="res://assets/gems/icons/orb_gas.png"
dest_files=["res://.godot/imported/orb_gas.png-66581c15804db15c61a5ede0720398e4.ctex"]
[params]

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://0hk3p7kthewy"
path="res://.godot/imported/orb_gatling.png-4ece35fcb9fed0206b838edd7cb6a21d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/orb_gatling.png"
dest_files=["res://.godot/imported/orb_gatling.png-4ece35fcb9fed0206b838edd7cb6a21d.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c7hcitca1s55x"
path="res://.godot/imported/orb_laser.png-f3227d1065dc1fc0cb4da7c0d54716c9.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/orb_laser.png"
dest_files=["res://.godot/imported/orb_laser.png-f3227d1065dc1fc0cb4da7c0d54716c9.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://brmyeqrurq4wq"
path="res://.godot/imported/orb_railcannon.png-4eb8efd7ac61f5ad5a8b9901b009f4c9.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/orb_railcannon.png"
dest_files=["res://.godot/imported/orb_railcannon.png-4eb8efd7ac61f5ad5a8b9901b009f4c9.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dkchdsprt7k52"
path="res://.godot/imported/orb_smoke.png-774e8df8044aa9a24d92371e558e1b5c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/orb_smoke.png"
dest_files=["res://.godot/imported/orb_smoke.png-774e8df8044aa9a24d92371e558e1b5c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://browvfvxx8516"
path="res://.godot/imported/orb_strike.png-24cb514b0259bc79dbb5e9f92435527f.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/orb_strike.png"
dest_files=["res://.godot/imported/orb_strike.png-24cb514b0259bc79dbb5e9f92435527f.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://87vobu2i4qjh"
path="res://.godot/imported/orb_walking.png-b6323cf59f2936cfac076386d3880751.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/orb_walking.png"
dest_files=["res://.godot/imported/orb_walking.png-b6323cf59f2936cfac076386d3880751.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://tpajah2d7dl6"
path="res://.godot/imported/prospecting_drill.png-5e191c3fec0431eaa6fbee60b444ac75.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/prospecting_drill.png"
dest_files=["res://.godot/imported/prospecting_drill.png-5e191c3fec0431eaa6fbee60b444ac75.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c5tibqljepsa2"
path="res://.godot/imported/railgun.png-2ba18cee5c89648adb845185d4b8d487.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/railgun.png"
dest_files=["res://.godot/imported/railgun.png-2ba18cee5c89648adb845185d4b8d487.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bxachh81ntdr1"
path="res://.godot/imported/raise_flag.png-3df23936354f73d24245e82584a53c55.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/raise_flag.png"
dest_files=["res://.godot/imported/raise_flag.png-3df23936354f73d24245e82584a53c55.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ddxrm1ww81p6h"
path="res://.godot/imported/recoilless.png-b7c26a625f637c0c67b7d5df88bf3640.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/recoilless.png"
dest_files=["res://.godot/imported/recoilless.png-b7c26a625f637c0c67b7d5df88bf3640.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bx6udk4huwtst"
path="res://.godot/imported/reinforce.png-9cc06966ff0dec584a155cf23445e95b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/reinforce.png"
dest_files=["res://.godot/imported/reinforce.png-9cc06966ff0dec584a155cf23445e95b.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ijdl5rtr55rd"
path="res://.godot/imported/resupply.png-876a824f35055e376bf1387eabc93714.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/resupply.png"
dest_files=["res://.godot/imported/resupply.png-876a824f35055e376bf1387eabc93714.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dhsp68vjou5je"
path="res://.godot/imported/rocket_sentry.png-f20aed0f4a81812225b0a7314022fbe9.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/gems/icons/rocket_sentry.png"
dest_files=["res://.godot/imported/rocket_sentry.png-f20aed0f4a81812225b0a7314022fbe9.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Some files were not shown because too many files have changed in this diff Show More