Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f3eea3f171 | |||
| 96b4fa7197 | |||
| 8d2fe1001e | |||
| 25aec40d03 | |||
| 80306bd095 | |||
| 9207295a99 | |||
| 4474ba22fa | |||
| 6101406f45 | |||
| c792c98ad2 | |||
| 74876a9a5d | |||
| bbb5149184 | |||
| 9e39528b9a | |||
| 1d2290b025 | |||
| b9ae83cd92 | |||
| 759d972b6d | |||
| 4df4585149 | |||
| 88b0911c6c | |||
| 81ce45a0dc | |||
| 1caf202310 | |||
| 22c4301244 | |||
| 032e059826 | |||
| a8683b77e8 | |||
| 90e6cdbcde | |||
| c09dfd1e7b | |||
| 9db0056c5d | |||
| 7f1d33e4fc | |||
| aaa9b102c1 | |||
| cb348667f5 | |||
| 8d23a95c68 | |||
| a9809abc27 | |||
| db65c02e75 | |||
| 5d49d6d681 | |||
| fa0e511b3a | |||
| 3efbd41f56 | |||
| 3148d3b69b |
@@ -55,9 +55,9 @@ jobs:
|
||||
dotnet-version: 'net9.0'
|
||||
paths: |
|
||||
res://tests/
|
||||
timeout: 1
|
||||
publish-report: false
|
||||
upload-report: false
|
||||
arguments: "--verbose --headless --import"
|
||||
|
||||
- name: Upload test report
|
||||
uses: actions/upload-artifact@v3-node20
|
||||
@@ -89,28 +89,27 @@ jobs:
|
||||
run: |
|
||||
mkdir -v -p build/windows
|
||||
${{ steps.setup-godot.outputs.godot_bin }} --headless --verbose --export-release "Windows Desktop" build/windows/${{ env.GAME_NAME }}.exe
|
||||
zip -r Windows.zip build/windows
|
||||
|
||||
- name: Setup Butler
|
||||
shell: bash
|
||||
env:
|
||||
BUTLER_API_KEY: ${{ secrets.BUTLER_TOKEN }}
|
||||
run: |
|
||||
mkdir ./tools 2>/dev/null || true
|
||||
pushd tools
|
||||
curl -sSLfo ./butler.zip "https://broth.itch.zone/butler/linux-amd64/LATEST/archive/default"
|
||||
unzip butler.zip
|
||||
chmod +x ./butler
|
||||
popd
|
||||
./tools/butler -V
|
||||
|
||||
- name: Upload to itch.io
|
||||
shell: bash
|
||||
env:
|
||||
BUTLER_API_KEY: ${{ secrets.BUTLER_TOKEN }}
|
||||
run: |
|
||||
versionArgument="--userversion ${{ needs.BumpTag.outputs.tag_name }}"
|
||||
./tools/butler push \
|
||||
"Windows.zip" \
|
||||
${{ env.ITCHIO_USERNAME }}/${{ env.ITCHIO_GAMEID }}:windows ${versionArgument}
|
||||
# - name: Setup Butler
|
||||
# shell: bash
|
||||
# env:
|
||||
# BUTLER_API_KEY: ${{ secrets.BUTLER_TOKEN }}
|
||||
# run: |
|
||||
# mkdir ./tools 2>/dev/null || true
|
||||
# pushd tools
|
||||
# curl -sSLfo ./butler.zip "https://broth.itch.zone/butler/linux-amd64/LATEST/archive/default"
|
||||
# unzip butler.zip
|
||||
# chmod +x ./butler
|
||||
# popd
|
||||
# ./tools/butler -V
|
||||
#
|
||||
# - name: Upload to itch.io
|
||||
# shell: bash
|
||||
# env:
|
||||
# BUTLER_API_KEY: ${{ secrets.BUTLER_TOKEN }}
|
||||
# run: |
|
||||
# versionArgument="--userversion ${{ needs.BumpTag.outputs.tag_name }}"
|
||||
# ./tools/butler push \
|
||||
# "Windows.zip" \
|
||||
# ${{ env.ITCHIO_USERNAME }}/${{ env.ITCHIO_GAMEID }}:windows ${versionArgument}
|
||||
|
||||
|
||||
@@ -55,10 +55,14 @@ jobs:
|
||||
popd
|
||||
./tools/butler -V
|
||||
|
||||
- name: Remove GDUnit addon
|
||||
run: |
|
||||
rm -rf ${{ gitea.workspace }}/addons/gdUnit4
|
||||
|
||||
- name: Build Windows
|
||||
run: |
|
||||
mkdir -v -p build/windows
|
||||
godot --headless --verbose --build-solutions --export-release "Windows Desktop" build/windows/${{ env.GAME_NAME }}.exe
|
||||
${{ steps.setup-godot.outputs.godot_bin }} --headless --verbose --build-solutions --export-release "Windows Desktop" build/windows/${{ env.GAME_NAME }}.exe
|
||||
zip -r Windows.zip build/windows
|
||||
- name: Upload Windows to itch.io
|
||||
shell: bash
|
||||
@@ -73,7 +77,7 @@ jobs:
|
||||
- name: Build Windows ARM
|
||||
run: |
|
||||
mkdir -v -p build/windowsArm
|
||||
godot --headless --verbose --build-solutions --export-release "Windows ARM" build/windowsArm/${{ env.GAME_NAME }}.exe
|
||||
${{ steps.setup-godot.outputs.godot_bin }} --headless --verbose --build-solutions --export-release "Windows ARM" build/windowsArm/${{ env.GAME_NAME }}.exe
|
||||
zip -r WindowsArm.zip build/windowsArm
|
||||
- name: Upload Windows to itch.io
|
||||
shell: bash
|
||||
@@ -88,7 +92,7 @@ jobs:
|
||||
- name: Linux Build
|
||||
run: |
|
||||
mkdir -v -p build/linux
|
||||
godot --headless --verbose --export-release "Linux/X11" build/linux/${{ env.GAME_NAME }}.x86_64
|
||||
${{ steps.setup-godot.outputs.godot_bin }} --headless --verbose --export-release "Linux/X11" build/linux/${{ env.GAME_NAME }}.x86_64
|
||||
zip -r Linux.zip build/linux
|
||||
- name: Upload Windows to itch.io
|
||||
shell: bash
|
||||
@@ -103,7 +107,7 @@ jobs:
|
||||
- name: Mac Build
|
||||
run: |
|
||||
mkdir -v -p build/mac
|
||||
godot --headless --verbose --export-release "macOS" build/mac/${{ env.GAME_NAME }}.zip
|
||||
${{ steps.setup-godot.outputs.godot_bin }} --headless --verbose --export-release "macOS" build/mac/${{ env.GAME_NAME }}.zip
|
||||
zip -r Mac.zip build/mac
|
||||
- name: Upload Windows to itch.io
|
||||
shell: bash
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -14,3 +14,5 @@
|
||||
|
||||
# Imported translations (automatically generated from CSV files)
|
||||
*.translation
|
||||
|
||||
.output.txt
|
||||
@@ -6,9 +6,6 @@
|
||||
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
|
||||
<TestSessionTimeout>180000</TestSessionTimeout>
|
||||
<TreatNoTestsAsError>true</TreatNoTestsAsError>
|
||||
<EnvironmentVariables>
|
||||
<GODOT_BIN>d:\development\Godot_v4.5-stable_mono_win64\Godot_v4.5-stable_mono_win64.exe</GODOT_BIN>
|
||||
</EnvironmentVariables>
|
||||
</RunConfiguration>
|
||||
|
||||
<LoggerRunSettings>
|
||||
|
||||
@@ -5,139 +5,153 @@
|
||||
<RootNamespace>Movementtests</RootNamespace>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Content Include=".runsettings"/>
|
||||
<Content Include="export_presets.cfg"/>
|
||||
<Content Include="menus\assets\git_logo\Git-Logo-2Color.png"/>
|
||||
<Content Include="menus\assets\git_logo\Git-Logo-2Color.png.import"/>
|
||||
<Content Include="menus\assets\git_logo\LICENSE.txt"/>
|
||||
<Content Include="menus\assets\godot_engine_logo\LICENSE.txt"/>
|
||||
<Content Include="menus\assets\godot_engine_logo\logo_vertical_color_dark.png"/>
|
||||
<Content Include="menus\assets\godot_engine_logo\logo_vertical_color_dark.png.import"/>
|
||||
<Content Include="menus\assets\icon.png"/>
|
||||
<Content Include="menus\assets\icon.png.import"/>
|
||||
<Content Include="menus\ATTRIBUTION.md"/>
|
||||
<Content Include="menus\resources\themes\expedition.tres"/>
|
||||
<Content Include="menus\resources\themes\gravity.tres"/>
|
||||
<Content Include="menus\resources\themes\grow.tres"/>
|
||||
<Content Include="menus\resources\themes\lab.tres"/>
|
||||
<Content Include="menus\resources\themes\lore.tres"/>
|
||||
<Content Include="menus\resources\themes\steal_this_theme.tres"/>
|
||||
<Content Include="menus\scenes\credits\scrollable_credits.gd"/>
|
||||
<Content Include="menus\scenes\credits\scrollable_credits.gd.uid"/>
|
||||
<Content Include="menus\scenes\credits\scrollable_credits.tscn"/>
|
||||
<Content Include="menus\scenes\credits\scrolling_credits.gd"/>
|
||||
<Content Include="menus\scenes\credits\scrolling_credits.gd.uid"/>
|
||||
<Content Include="menus\scenes\credits\scrolling_credits.tscn"/>
|
||||
<Content Include="menus\scenes\end_credits\end_credits.gd"/>
|
||||
<Content Include="menus\scenes\end_credits\end_credits.gd.uid"/>
|
||||
<Content Include="menus\scenes\end_credits\end_credits.tscn"/>
|
||||
<Content Include="menus\scenes\game_scene\configurable_sub_viewport.gd"/>
|
||||
<Content Include="menus\scenes\game_scene\configurable_sub_viewport.gd.uid"/>
|
||||
<Content Include="menus\scenes\game_scene\game_ui.tscn"/>
|
||||
<Content Include="menus\scenes\game_scene\input_display_label.gd"/>
|
||||
<Content Include="menus\scenes\game_scene\input_display_label.gd.uid"/>
|
||||
<Content Include="menus\scenes\game_scene\levels\level.gd"/>
|
||||
<Content Include="menus\scenes\game_scene\levels\level.gd.uid"/>
|
||||
<Content Include="menus\scenes\game_scene\levels\level_1.tscn"/>
|
||||
<Content Include="menus\scenes\game_scene\levels\level_2.tscn"/>
|
||||
<Content Include="menus\scenes\game_scene\levels\level_3.tscn"/>
|
||||
<Content Include="menus\scenes\game_scene\tutorials\tutorial_1.tscn"/>
|
||||
<Content Include="menus\scenes\game_scene\tutorials\tutorial_2.tscn"/>
|
||||
<Content Include="menus\scenes\game_scene\tutorials\tutorial_3.tscn"/>
|
||||
<Content Include="menus\scenes\game_scene\tutorial_manager.gd"/>
|
||||
<Content Include="menus\scenes\game_scene\tutorial_manager.gd.uid"/>
|
||||
<Content Include="menus\scenes\loading_screen\level_loading_screen.tscn"/>
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen.gd"/>
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen.gd.uid"/>
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen.tscn"/>
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen_with_shader_caching.gd"/>
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen_with_shader_caching.gd.uid"/>
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen_with_shader_caching.tscn"/>
|
||||
<Content Include="menus\scenes\menus\level_select_menu\level_select_menu.gd"/>
|
||||
<Content Include="menus\scenes\menus\level_select_menu\level_select_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\level_select_menu\level_select_menu.tscn"/>
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu.gd"/>
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu.tscn"/>
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu_with_animations.gd"/>
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu_with_animations.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu_with_animations.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_input_option_control.gd"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_input_option_control.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_input_option_control.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_options_menu.gd"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_options_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_options_menu.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\game\game_options_menu.gd"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\game\game_options_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\game\game_options_menu.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\game\reset_game_control\reset_game_control.gd"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\game\reset_game_control\reset_game_control.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\game\reset_game_control\reset_game_control.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_extras_menu.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu.gd"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu_with_mouse_sensitivity.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu.gd"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu_with_tabs.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu.gd"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu_with_reset.gd"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu_with_reset.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu_with_reset.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu.gd"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu.tscn"/>
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu_with_extras.tscn"/>
|
||||
<Content Include="menus\scenes\opening\opening.gd"/>
|
||||
<Content Include="menus\scenes\opening\opening.gd.uid"/>
|
||||
<Content Include="menus\scenes\opening\opening.tscn"/>
|
||||
<Content Include="menus\scenes\opening\opening_with_logo.tscn"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\game_won_menu.gd"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\game_won_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\game_won_menu.tscn"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\level_lost_menu.gd"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\level_lost_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\level_lost_menu.tscn"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\level_won_menu.gd"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\level_won_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\level_won_menu.tscn"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\mini_options_overlaid_menu.tscn"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu.gd"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu.tscn"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu_container.gd"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu_container.gd.uid"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu_container.tscn"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\pause_menu.gd"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\pause_menu.gd.uid"/>
|
||||
<Content Include="menus\scenes\overlaid_menus\pause_menu.tscn"/>
|
||||
<Content Include="menus\scripts\game_state.gd"/>
|
||||
<Content Include="menus\scripts\game_state.gd.uid"/>
|
||||
<Content Include="menus\scripts\level_list_and_state_manager.gd"/>
|
||||
<Content Include="menus\scripts\level_list_and_state_manager.gd.uid"/>
|
||||
<Content Include="menus\scripts\level_state.gd"/>
|
||||
<Content Include="menus\scripts\level_state.gd.uid"/>
|
||||
<Content Include=".runsettings" />
|
||||
<Content Include="export_presets.cfg" />
|
||||
<Content Include="menus\assets\git_logo\Git-Logo-2Color.png" />
|
||||
<Content Include="menus\assets\git_logo\Git-Logo-2Color.png.import" />
|
||||
<Content Include="menus\assets\git_logo\LICENSE.txt" />
|
||||
<Content Include="menus\assets\godot_engine_logo\LICENSE.txt" />
|
||||
<Content Include="menus\assets\godot_engine_logo\logo_vertical_color_dark.png" />
|
||||
<Content Include="menus\assets\godot_engine_logo\logo_vertical_color_dark.png.import" />
|
||||
<Content Include="menus\assets\icon.png" />
|
||||
<Content Include="menus\assets\icon.png.import" />
|
||||
<Content Include="menus\ATTRIBUTION.md" />
|
||||
<Content Include="menus\resources\themes\expedition.tres" />
|
||||
<Content Include="menus\resources\themes\gravity.tres" />
|
||||
<Content Include="menus\resources\themes\grow.tres" />
|
||||
<Content Include="menus\resources\themes\lab.tres" />
|
||||
<Content Include="menus\resources\themes\lore.tres" />
|
||||
<Content Include="menus\resources\themes\steal_this_theme.tres" />
|
||||
<Content Include="menus\scenes\credits\scrollable_credits.gd" />
|
||||
<Content Include="menus\scenes\credits\scrollable_credits.gd.uid" />
|
||||
<Content Include="menus\scenes\credits\scrollable_credits.tscn" />
|
||||
<Content Include="menus\scenes\credits\scrolling_credits.gd" />
|
||||
<Content Include="menus\scenes\credits\scrolling_credits.gd.uid" />
|
||||
<Content Include="menus\scenes\credits\scrolling_credits.tscn" />
|
||||
<Content Include="menus\scenes\end_credits\end_credits.gd" />
|
||||
<Content Include="menus\scenes\end_credits\end_credits.gd.uid" />
|
||||
<Content Include="menus\scenes\end_credits\end_credits.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\configurable_sub_viewport.gd" />
|
||||
<Content Include="menus\scenes\game_scene\configurable_sub_viewport.gd.uid" />
|
||||
<Content Include="menus\scenes\game_scene\game_ui.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\input_display_label.gd" />
|
||||
<Content Include="menus\scenes\game_scene\input_display_label.gd.uid" />
|
||||
<Content Include="menus\scenes\game_scene\levels\level.gd" />
|
||||
<Content Include="menus\scenes\game_scene\levels\level.gd.uid" />
|
||||
<Content Include="menus\scenes\game_scene\levels\level_1.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\levels\level_2.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\levels\level_3.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\tutorials\tutorial_1.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\tutorials\tutorial_2.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\tutorials\tutorial_3.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\tutorial_manager.gd" />
|
||||
<Content Include="menus\scenes\game_scene\tutorial_manager.gd.uid" />
|
||||
<Content Include="menus\scenes\loading_screen\level_loading_screen.tscn" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen.gd" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen.gd.uid" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen.tscn" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen_with_shader_caching.gd" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen_with_shader_caching.gd.uid" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen_with_shader_caching.tscn" />
|
||||
<Content Include="menus\scenes\menus\level_select_menu\level_select_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\level_select_menu\level_select_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\level_select_menu\level_select_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu_with_animations.gd" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu_with_animations.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu_with_animations.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_input_option_control.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_input_option_control.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_input_option_control.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\game_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\game_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\game_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\reset_game_control\reset_game_control.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\reset_game_control\reset_game_control.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\reset_game_control\reset_game_control.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_extras_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu_with_mouse_sensitivity.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu_with_tabs.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu_with_reset.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu_with_reset.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu_with_reset.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu_with_extras.tscn" />
|
||||
<Content Include="menus\scenes\opening\opening.gd" />
|
||||
<Content Include="menus\scenes\opening\opening.gd.uid" />
|
||||
<Content Include="menus\scenes\opening\opening.tscn" />
|
||||
<Content Include="menus\scenes\opening\opening_with_logo.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\game_won_menu.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\game_won_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\game_won_menu.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_lost_menu.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_lost_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_lost_menu.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_won_menu.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_won_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_won_menu.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\mini_options_overlaid_menu.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu_container.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu_container.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu_container.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\pause_menu.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\pause_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\pause_menu.tscn" />
|
||||
<Content Include="menus\scripts\game_state.gd" />
|
||||
<Content Include="menus\scripts\game_state.gd.uid" />
|
||||
<Content Include="menus\scripts\level_list_and_state_manager.gd" />
|
||||
<Content Include="menus\scripts\level_list_and_state_manager.gd.uid" />
|
||||
<Content Include="menus\scripts\level_state.gd" />
|
||||
<Content Include="menus\scripts\level_state.gd.uid" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="addons\"/>
|
||||
<Folder Include="addons\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="RustyOptions" Version="0.10.1"/>
|
||||
<PackageReference Include="RustyOptions" Version="0.10.1" />
|
||||
</ItemGroup>
|
||||
<Import Project="addons/forge/Forge.props" />
|
||||
|
||||
<!-- XUnit -->
|
||||
<ItemGroup>
|
||||
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Using Include="Xunit" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.2" />
|
||||
</ItemGroup>
|
||||
|
||||
<!-- gdUnit4 package dependencies -->
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0"/>
|
||||
<PackageReference Include="gdUnit4.api" Version="5.1.0-rc3"/>
|
||||
<PackageReference Include="gdUnit4.test.adapter" Version="3.0.0"/>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
|
||||
<PackageReference Include="gdUnit4.api" Version="5.1.0-rc3" />
|
||||
<PackageReference Include="gdUnit4.test.adapter" Version="3.0.0" />
|
||||
<PackageReference Include="gdUnit4.analyzers" Version="1.0.0">
|
||||
<PrivateAssets>none</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
<Import Project="addons/forge/Forge.props"/>
|
||||
</Project>
|
||||
@@ -5,6 +5,8 @@
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ANode_002Ecs_002Fl_003AC_0021_003FUsers_003FMinimata_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E1_003Fresharper_002Dhost_003FSourcesCache_003F716d154fef5cbe863cd637bd32beda6e3cec5f12e8fed2dc5b2d8149a0d558ab_003FNode_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ANode_002Ecs_002Fl_003AC_0021_003FUsers_003FMinimata_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E1_003Fresharper_002Dhost_003FSourcesCache_003Fdf73a4db74df89d59655c5fb6326406f47fbfa9af1fa81518fe0a07c49d34133_003FNode_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ASceneTree_002Ecs_002Fl_003AC_0021_003FUsers_003FMinimata_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E1_003Fresharper_002Dhost_003FSourcesCache_003F8d6960554e939a669841b1ece03d27df4ab42f92bb80be3767eaec8cdaccf84b_003FSceneTree_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
|
||||
|
||||
<s:String x:Key="/Default/Environment/UnitTesting/UnitTestSessionStore/Sessions/=dd9a7ac6_002Dbb9b_002D4001_002Db145_002D15e6509b7e78/@EntryIndexedValue"><SessionState ContinuousTestingMode="0" IsActive="True" Name="All tests from Solution" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session">
|
||||
<Solution />
|
||||
</SessionState></s:String>
|
||||
|
||||
@@ -13,22 +13,27 @@ public partial class CueHandlerInspectorPlugin : EditorInspectorPlugin
|
||||
public override bool _CanHandle(GodotObject @object)
|
||||
{
|
||||
// Find out if its an implementation of CueHandler without having to add [Tool] attribute to them.
|
||||
if (@object?.GetScript().As<CSharpScript>() is CSharpScript script)
|
||||
try
|
||||
{
|
||||
StringName className = script.GetGlobalName();
|
||||
|
||||
Type baseType = typeof(ForgeCueHandler);
|
||||
System.Reflection.Assembly assembly = baseType.Assembly;
|
||||
|
||||
Type? implementationType =
|
||||
Array.Find(assembly.GetTypes(), x =>
|
||||
x.Name == className &&
|
||||
baseType.IsAssignableFrom(x));
|
||||
|
||||
return implementationType is not null;
|
||||
if (@object.GetScript().As<CSharpScript>() is not { }) return false;
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
return false;
|
||||
var script = @object.GetScript().As<CSharpScript>();
|
||||
StringName className = script.GetGlobalName();
|
||||
|
||||
Type baseType = typeof(ForgeCueHandler);
|
||||
System.Reflection.Assembly assembly = baseType.Assembly;
|
||||
|
||||
Type? implementationType =
|
||||
Array.Find(assembly.GetTypes(), x =>
|
||||
x.Name == className &&
|
||||
baseType.IsAssignableFrom(x));
|
||||
|
||||
return implementationType is not null;
|
||||
}
|
||||
|
||||
public override bool _ParseProperty(
|
||||
|
||||
28
agents.md
Normal file
28
agents.md
Normal file
@@ -0,0 +1,28 @@
|
||||
### Project Overview: Godot C# Movement Tests
|
||||
This project is a high-performance 3D character controller for Godot 4.x using C# 13 and .NET 9. It focuses on modular movement systems (Dash, Mantle, Stairs) and robust combat mechanics (Damage, Health, Knockback) decoupled through interfaces.
|
||||
|
||||
### Core Architecture
|
||||
- **Modular Systems**: The `PlayerController.cs` acts as a central hub for multiple specialized "Systems" (e.g., `DashSystem`, `MantleSystem`, `HeadSystem`, `StairsSystem`).
|
||||
- **State Management**: Uses `GodotStateCharts` for complex movement and action states. Look for state transitions and triggers within the system scripts.
|
||||
- **Interface-Driven Design**: Located in `/interfaces/`, these define how objects interact (e.g., `IDamageable`, `IHealthable`, `IKnockbackable`). Always implement these interfaces for new interactable entities.
|
||||
- **Node Composition**: Most systems are attached to the `PlayerController` scene as child nodes and initialized via their respective `Init()` methods or exported fields.
|
||||
|
||||
### Key Directories
|
||||
- `/scenes/player_controller/`: Contains the main player scene, the central `PlayerController.cs`, and its sub-systems.
|
||||
- `/scenes/player_controller/components/`: Modular logic for specific features like Dash, Mantle, and Weapons.
|
||||
- `/interfaces/`: Core C# interfaces and shared records (e.g., `DamageRecord`, `HealthChangedRecord`).
|
||||
- `/tests/`: Automated unit and integration tests using `GdUnit4` and `xUnit`.
|
||||
|
||||
### Coding Standards & Idioms
|
||||
- **C# 13 & .NET 9**: Use modern C# features (records, primary constructors, collection expressions).
|
||||
- **Godot Partial Classes**: All Godot scripts must be `partial` and use `[GlobalClass]` where appropriate for editor visibility.
|
||||
- **RustyOptions**: The project uses `RustyOptions` for safer null handling and result types (`Option<T>`, `Result<T, E>`).
|
||||
- **Signals**: Use `[Signal]` and the `EventHandler` pattern for Godot signals.
|
||||
- **Dependency Injection**: Systems are typically assigned to fields in `PlayerController` via the editor or `GetNode<T>()` in `_Ready()`.
|
||||
|
||||
### LLM Interaction Tips
|
||||
1. **Partial Classes**: When suggesting changes to `PlayerController.cs` or systems, remember they are `partial`. Large files like `PlayerController.cs` (2500+ lines) are often split or contain many regions.
|
||||
2. **Node Hierarchy**: Always check `PlayerController.tscn` or system scenes (`head_system.tscn`) when dealing with node references (`GetNode`).
|
||||
3. **GdUnit4**: For testing, follow the pattern in `tests/PlayerMovementTest.cs`. Use `ISceneRunner` to simulate inputs and await frames/milliseconds.
|
||||
4. **Vector Operations**: Use Godot's built-in `Vector3` methods for movement logic. The project often uses `GlobalPosition` and `DirectionTo`.
|
||||
5. **Boilerplate**: When creating new systems, mirror the `Init()` and `_PhysicsProcess` patterns found in existing systems like `DashSystem.cs` or `MantleSystem.cs`.
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_battery_empty.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_battery_empty.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://di0ht1wp7sxlp"
|
||||
path="res://.godot/imported/controller_battery_empty.png-58b65ac654df06d28fed87a81b36606e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_battery_empty.png"
|
||||
dest_files=["res://.godot/imported/controller_battery_empty.png-58b65ac654df06d28fed87a81b36606e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_battery_full.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_battery_full.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cmw3cbimlkgis"
|
||||
path="res://.godot/imported/controller_battery_full.png-176ce39bf839aea5835164d4e211aab0.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_battery_full.png"
|
||||
dest_files=["res://.godot/imported/controller_battery_full.png-176ce39bf839aea5835164d4e211aab0.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_battery_half.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_battery_half.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://broeeklgc0lxs"
|
||||
path="res://.godot/imported/controller_battery_half.png-c82671993a5c55f2d6164336c3dd90fa.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_battery_half.png"
|
||||
dest_files=["res://.godot/imported/controller_battery_half.png-c82671993a5c55f2d6164336c3dd90fa.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_connecting_a.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_connecting_a.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cw5c762n1832n"
|
||||
path="res://.godot/imported/controller_connecting_a.png-65f931a78c55873862965128f5bf90a9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_connecting_a.png"
|
||||
dest_files=["res://.godot/imported/controller_connecting_a.png-65f931a78c55873862965128f5bf90a9.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_connecting_b.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_connecting_b.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://gss6d5822rpf"
|
||||
path="res://.godot/imported/controller_connecting_b.png-37c6bd3672386ce43d1d99611eb1b293.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_connecting_b.png"
|
||||
dest_files=["res://.godot/imported/controller_connecting_b.png-37c6bd3672386ce43d1d99611eb1b293.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_disconnected.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_disconnected.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://df55trgpa1gf6"
|
||||
path="res://.godot/imported/controller_disconnected.png-5722ccfcc93a71da2e7c9c7f985bbf39.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_disconnected.png"
|
||||
dest_files=["res://.godot/imported/controller_disconnected.png-5722ccfcc93a71da2e7c9c7f985bbf39.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_generic.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_generic.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://q1wq885haoe3"
|
||||
path="res://.godot/imported/controller_generic.png-96f4fa9f8427d463fe18b5717ba829fc.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_generic.png"
|
||||
dest_files=["res://.godot/imported/controller_generic.png-96f4fa9f8427d463fe18b5717ba829fc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_battery_empty.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_battery_empty.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dyj2umqaeaede"
|
||||
path="res://.godot/imported/controller_icon_battery_empty.png-ff476a622e4da1ea3a12a02e33132e85.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_icon_battery_empty.png"
|
||||
dest_files=["res://.godot/imported/controller_icon_battery_empty.png-ff476a622e4da1ea3a12a02e33132e85.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_battery_full.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_battery_full.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cu4x16jqhsqqg"
|
||||
path="res://.godot/imported/controller_icon_battery_full.png-e6aaf1e0dcb1fca2f1b71da873b603fb.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_icon_battery_full.png"
|
||||
dest_files=["res://.godot/imported/controller_icon_battery_full.png-e6aaf1e0dcb1fca2f1b71da873b603fb.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_battery_half.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_battery_half.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bguv6k82jb8k1"
|
||||
path="res://.godot/imported/controller_icon_battery_half.png-d0d5a21e01cd2cb0b9915f37668f0432.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_icon_battery_half.png"
|
||||
dest_files=["res://.godot/imported/controller_icon_battery_half.png-d0d5a21e01cd2cb0b9915f37668f0432.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_connecting_a.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_connecting_a.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cu0bujp8ysnru"
|
||||
path="res://.godot/imported/controller_icon_connecting_a.png-3a560185f6814542517b9230a25c2ca0.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_icon_connecting_a.png"
|
||||
dest_files=["res://.godot/imported/controller_icon_connecting_a.png-3a560185f6814542517b9230a25c2ca0.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_connecting_b.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_connecting_b.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d08rggs1eom05"
|
||||
path="res://.godot/imported/controller_icon_connecting_b.png-c809ffc961cabc1572db706c128906e8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_icon_connecting_b.png"
|
||||
dest_files=["res://.godot/imported/controller_icon_connecting_b.png-c809ffc961cabc1572db706c128906e8.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_disconnected.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/controller_icon_disconnected.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cssl1ym3l3t0r"
|
||||
path="res://.godot/imported/controller_icon_disconnected.png-b37453213eaef65197a6bbc6d9a0439a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/controller_icon_disconnected.png"
|
||||
dest_files=["res://.godot/imported/controller_icon_disconnected.png-b37453213eaef65197a6bbc6d9a0439a.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_0.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_0.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://504cs7uhcsb8"
|
||||
path="res://.godot/imported/flair_arrow_0.png-4aa59705b3e24f276268d8109ae9505e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_0.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_0.png-4aa59705b3e24f276268d8109ae9505e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_1.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_1.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bymokg3ojvlbn"
|
||||
path="res://.godot/imported/flair_arrow_1.png-06e0e32cfd2f84954293238eae6e0145.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_1.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_1.png-06e0e32cfd2f84954293238eae6e0145.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_2.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_2.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://brol33yuw5u5u"
|
||||
path="res://.godot/imported/flair_arrow_2.png-e298e26bed3248e388ad9eff8e04aa2c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_2.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_2.png-e298e26bed3248e388ad9eff8e04aa2c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_3.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_3.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://djtawj5bagxmd"
|
||||
path="res://.godot/imported/flair_arrow_3.png-d3b4322fe8737425a96d63723e24a1ff.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_3.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_3.png-d3b4322fe8737425a96d63723e24a1ff.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_backforth.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_backforth.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bi16ofvcw2jyi"
|
||||
path="res://.godot/imported/flair_arrow_backforth.png-2750756a14348d9d22397eeb3c625ef8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_backforth.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_backforth.png-2750756a14348d9d22397eeb3c625ef8.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_center_0.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_center_0.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://denumkrcglwmh"
|
||||
path="res://.godot/imported/flair_arrow_center_0.png-4b46bbf62587033531db15dfb8ea2e44.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_center_0.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_center_0.png-4b46bbf62587033531db15dfb8ea2e44.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_center_1.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_center_1.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://fqjwu40h3a81"
|
||||
path="res://.godot/imported/flair_arrow_center_1.png-03f19bc7422e91c19ecb8566d623ea7f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_center_1.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_center_1.png-03f19bc7422e91c19ecb8566d623ea7f.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_center_2.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_center_2.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://byebub21vwtnm"
|
||||
path="res://.godot/imported/flair_arrow_center_2.png-b90113568f3e603cf9d90fcd236fb418.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_center_2.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_center_2.png-b90113568f3e603cf9d90fcd236fb418.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_center_3.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_center_3.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://rbo06uoothmk"
|
||||
path="res://.godot/imported/flair_arrow_center_3.png-5e36d9cf5d0dc408c308829cdc2eb13c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_center_3.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_center_3.png-5e36d9cf5d0dc408c308829cdc2eb13c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_long.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_long.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bxuvbg2j547c3"
|
||||
path="res://.godot/imported/flair_arrow_long.png-d171f4b2cfc40396729ad22e061e6c6d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_long.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_long.png-d171f4b2cfc40396729ad22e061e6c6d.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_short.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_short.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b3hmh4y73po0y"
|
||||
path="res://.godot/imported/flair_arrow_short.png-889592acdb20ece4684a38b58d0d5f89.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_short.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_short.png-889592acdb20ece4684a38b58d0d5f89.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_z.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrow_z.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cnp2j0eak6vqx"
|
||||
path="res://.godot/imported/flair_arrow_z.png-1702223d7a59ee67ce9db2a106d0760e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrow_z.png"
|
||||
dest_files=["res://.godot/imported/flair_arrow_z.png-1702223d7a59ee67ce9db2a106d0760e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_all.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_all.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://br6iu510fmxxl"
|
||||
path="res://.godot/imported/flair_arrows_all.png-310296d8690a50df2106dd16f88baf85.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrows_all.png"
|
||||
dest_files=["res://.godot/imported/flair_arrows_all.png-310296d8690a50df2106dd16f88baf85.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_diagonal_all.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_diagonal_all.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://de80q5r6mqpbe"
|
||||
path="res://.godot/imported/flair_arrows_diagonal_all.png-2173cea5a1fa4162f7523cdc679fa502.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrows_diagonal_all.png"
|
||||
dest_files=["res://.godot/imported/flair_arrows_diagonal_all.png-2173cea5a1fa4162f7523cdc679fa502.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_diagonal_left.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_diagonal_left.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://gos3kcjwplqj"
|
||||
path="res://.godot/imported/flair_arrows_diagonal_left.png-557027e6090ea42939893afd8f7384b8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrows_diagonal_left.png"
|
||||
dest_files=["res://.godot/imported/flair_arrows_diagonal_left.png-557027e6090ea42939893afd8f7384b8.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_diagonal_right.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_diagonal_right.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cem1b1e3n6qr2"
|
||||
path="res://.godot/imported/flair_arrows_diagonal_right.png-f03230921624ac292bdce2d3334209f9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrows_diagonal_right.png"
|
||||
dest_files=["res://.godot/imported/flair_arrows_diagonal_right.png-f03230921624ac292bdce2d3334209f9.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_down.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_down.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dbniffb1yr3gy"
|
||||
path="res://.godot/imported/flair_arrows_down.png-4c447ecb8b8c437c17b11bc0ba1c52f4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrows_down.png"
|
||||
dest_files=["res://.godot/imported/flair_arrows_down.png-4c447ecb8b8c437c17b11bc0ba1c52f4.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_horizontal.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_horizontal.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dmdfbeoow5pl7"
|
||||
path="res://.godot/imported/flair_arrows_horizontal.png-1e60c5be17096b6c71540d959d40cff4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrows_horizontal.png"
|
||||
dest_files=["res://.godot/imported/flair_arrows_horizontal.png-1e60c5be17096b6c71540d959d40cff4.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_left.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_left.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ylwg01er0rbu"
|
||||
path="res://.godot/imported/flair_arrows_left.png-6f4b168e2244b5de4213b2b788a411a6.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrows_left.png"
|
||||
dest_files=["res://.godot/imported/flair_arrows_left.png-6f4b168e2244b5de4213b2b788a411a6.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_right.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_right.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://crafj7wcp0why"
|
||||
path="res://.godot/imported/flair_arrows_right.png-b29b02b85643108f46e4235f97a4a7b9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrows_right.png"
|
||||
dest_files=["res://.godot/imported/flair_arrows_right.png-b29b02b85643108f46e4235f97a4a7b9.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_up.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_up.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cj8r8ysf8vhd4"
|
||||
path="res://.godot/imported/flair_arrows_up.png-851d9d7c415f0ab534befea98515020c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrows_up.png"
|
||||
dest_files=["res://.godot/imported/flair_arrows_up.png-851d9d7c415f0ab534befea98515020c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_vertical.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_arrows_vertical.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c4wpo50kdn2dk"
|
||||
path="res://.godot/imported/flair_arrows_vertical.png-1f57b793acc41e88a8a7e52b6dfc032f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_arrows_vertical.png"
|
||||
dest_files=["res://.godot/imported/flair_arrows_vertical.png-1f57b793acc41e88a8a7e52b6dfc032f.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_0.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_0.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cx5mrw2intgvv"
|
||||
path="res://.godot/imported/flair_circle_0.png-09f090156ddda309b44c6e65b3aaeb1e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_circle_0.png"
|
||||
dest_files=["res://.godot/imported/flair_circle_0.png-09f090156ddda309b44c6e65b3aaeb1e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_1.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_1.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://qm7b4qcncyj3"
|
||||
path="res://.godot/imported/flair_circle_1.png-431caccb90d9acd49dd6453b966b95da.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_circle_1.png"
|
||||
dest_files=["res://.godot/imported/flair_circle_1.png-431caccb90d9acd49dd6453b966b95da.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_2.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_2.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dvw1ayubot81k"
|
||||
path="res://.godot/imported/flair_circle_2.png-18d036a46c8c3d5c393927016a6f3960.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_circle_2.png"
|
||||
dest_files=["res://.godot/imported/flair_circle_2.png-18d036a46c8c3d5c393927016a6f3960.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_3.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_3.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://3oke02y6otje"
|
||||
path="res://.godot/imported/flair_circle_3.png-02187eee6178d1a9386a9b73af4ca149.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_circle_3.png"
|
||||
dest_files=["res://.godot/imported/flair_circle_3.png-02187eee6178d1a9386a9b73af4ca149.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_4.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_4.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://n74wixfoyrm3"
|
||||
path="res://.godot/imported/flair_circle_4.png-74325cacc87b4097280d5655c768e496.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_circle_4.png"
|
||||
dest_files=["res://.godot/imported/flair_circle_4.png-74325cacc87b4097280d5655c768e496.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_5.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_5.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bugjadohedvir"
|
||||
path="res://.godot/imported/flair_circle_5.png-7bad90711dc3ac162284d16b2806808b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_circle_5.png"
|
||||
dest_files=["res://.godot/imported/flair_circle_5.png-7bad90711dc3ac162284d16b2806808b.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_6.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_6.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://omk7w4rpbxbx"
|
||||
path="res://.godot/imported/flair_circle_6.png-ce2151dcb2b281f7c1b46299557b55f8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_circle_6.png"
|
||||
dest_files=["res://.godot/imported/flair_circle_6.png-ce2151dcb2b281f7c1b46299557b55f8.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_7.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_7.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bq6md76mcjj02"
|
||||
path="res://.godot/imported/flair_circle_7.png-ce548a13911ae702981a3e58abcea52d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_circle_7.png"
|
||||
dest_files=["res://.godot/imported/flair_circle_7.png-ce548a13911ae702981a3e58abcea52d.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_8.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_8.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bdlon4jegojct"
|
||||
path="res://.godot/imported/flair_circle_8.png-8ddd34c5ba034ddaabd898841f6b0cad.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_circle_8.png"
|
||||
dest_files=["res://.godot/imported/flair_circle_8.png-8ddd34c5ba034ddaabd898841f6b0cad.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_red_0.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_red_0.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c0oirn5frdu0y"
|
||||
path="res://.godot/imported/flair_circle_red_0.png-33ba7e908306b6cb83ee293cafcf7e5f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_circle_red_0.png"
|
||||
dest_files=["res://.godot/imported/flair_circle_red_0.png-33ba7e908306b6cb83ee293cafcf7e5f.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_red_1.png
(Stored with Git LFS)
BIN
assets/ui/input-prompts/Flairs/Default/flair_circle_red_1.png
(Stored with Git LFS)
Binary file not shown.
@@ -1,40 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bvn4lbhdq2efl"
|
||||
path="res://.godot/imported/flair_circle_red_1.png-38cd6d093ce673bcd3576936347e2a39.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/ui/input-prompts/Flairs/Default/flair_circle_red_1.png"
|
||||
dest_files=["res://.godot/imported/flair_circle_red_1.png-38cd6d093ce673bcd3576936347e2a39.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
Reference in New Issue
Block a user