Compare commits
18 Commits
ca233f4171
...
8ded8c81ee
| Author | SHA1 | Date | |
|---|---|---|---|
| 8ded8c81ee | |||
| eb99c6a18e | |||
| c1f3f9f708 | |||
| e2e49f89ce | |||
| 7ec75a3b26 | |||
| 33a25dc532 | |||
| 60279542e1 | |||
| 35bdd44649 | |||
| 77971497a4 | |||
| 9b83bec37d | |||
| 0791b80f15 | |||
| ca6111cd28 | |||
| 0cf76d595f | |||
| 821d9aa42c | |||
| 06f0f87970 | |||
| 86439abea8 | |||
| dd0c1a123c | |||
| 3e960a955c |
13
.gdformatrc
Normal file
@@ -0,0 +1,13 @@
|
||||
# GDFormat configuration file
|
||||
# This file configures the gdformat tool for consistent GDScript formatting
|
||||
|
||||
# Maximum line length (default is 100)
|
||||
# Godot's style guide recommends keeping lines under 100 characters
|
||||
line_length = 80
|
||||
|
||||
# Whether to use tabs or spaces for indentation
|
||||
# Godot uses tabs by default
|
||||
use_tabs = true
|
||||
|
||||
# Number of spaces per tab (when displaying)
|
||||
tab_width = 4
|
||||
292
.gitea/workflows/ci.yml
Normal file
@@ -0,0 +1,292 @@
|
||||
name: Continuous Integration
|
||||
|
||||
# CI pipeline for the Skelly Godot project
|
||||
#
|
||||
# Code quality checks (formatting, linting, testing) run as independent jobs
|
||||
# in parallel. Uses tools/run_development.py for consistency with local development.
|
||||
#
|
||||
# Features:
|
||||
# - Independent job execution (no dependencies between format/lint/test)
|
||||
# - Automatic code formatting with commit back to branch
|
||||
# - Error reporting and PR comments
|
||||
# - Manual execution with selective step skipping
|
||||
|
||||
on:
|
||||
# Trigger on push to any branch - only when relevant files change
|
||||
push:
|
||||
branches: ['*']
|
||||
paths:
|
||||
- '**/*.gd' # Any GDScript file
|
||||
- '.gdlintrc' # Linting configuration
|
||||
- '.gdformatrc' # Formatting configuration
|
||||
- 'tools/run_development.py' # Development workflow script
|
||||
- '.gitea/workflows/ci.yml' # This workflow file
|
||||
|
||||
# Trigger on pull requests - same file filters as push
|
||||
pull_request:
|
||||
branches: ['*']
|
||||
paths:
|
||||
- '**/*.gd'
|
||||
- '.gdlintrc'
|
||||
- '.gdformatrc'
|
||||
- 'tools/run_development.py'
|
||||
- '.gitea/workflows/ci.yml'
|
||||
|
||||
# Allow manual triggering with optional step skipping
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
skip_format:
|
||||
description: 'Skip code formatting'
|
||||
required: false
|
||||
default: 'false'
|
||||
type: boolean
|
||||
skip_lint:
|
||||
description: 'Skip code linting'
|
||||
required: false
|
||||
default: 'false'
|
||||
type: boolean
|
||||
skip_tests:
|
||||
description: 'Skip test execution'
|
||||
required: false
|
||||
default: 'false'
|
||||
type: boolean
|
||||
|
||||
jobs:
|
||||
format:
|
||||
name: Code Formatting
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
if: ${{ always() && github.event.inputs.skip_format != 'true' }}
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.ref || github.ref }}
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.11'
|
||||
cache: 'pip'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install --upgrade "setuptools<81"
|
||||
pip install gdtoolkit==4
|
||||
|
||||
- name: Run code formatting
|
||||
id: format
|
||||
run: |
|
||||
echo "🎨 Running GDScript formatting..."
|
||||
python tools/run_development.py --format
|
||||
|
||||
- name: Check for formatting changes
|
||||
id: check-changes
|
||||
run: |
|
||||
if git diff --quiet; then
|
||||
echo "📝 No formatting changes detected"
|
||||
echo "has_changes=false" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "📝 Formatting changes detected"
|
||||
echo "has_changes=true" >> $GITHUB_OUTPUT
|
||||
echo "🔍 Changed files:"
|
||||
git diff --name-only
|
||||
echo ""
|
||||
echo "📊 Diff summary:"
|
||||
git diff --stat
|
||||
fi
|
||||
|
||||
- name: Commit and push formatting changes
|
||||
if: steps.check-changes.outputs.has_changes == 'true'
|
||||
run: |
|
||||
echo "💾 Committing formatting changes..."
|
||||
|
||||
git config user.name "Gitea Actions"
|
||||
git config user.email "actions@gitea.local"
|
||||
|
||||
git add -A
|
||||
|
||||
commit_message="🎨 Auto-format GDScript code
|
||||
|
||||
Automated formatting applied by tools/run_development.py
|
||||
|
||||
🤖 Generated by Gitea Actions
|
||||
Workflow: ${{ github.workflow }}
|
||||
Run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|
||||
|
||||
git commit -m "$commit_message"
|
||||
|
||||
target_branch="${{ github.event.pull_request.head.ref || github.ref_name }}"
|
||||
echo "📤 Pushing changes to branch: $target_branch"
|
||||
git push origin HEAD:"$target_branch"
|
||||
|
||||
echo "✅ Formatting changes pushed successfully!"
|
||||
|
||||
lint:
|
||||
name: Code Quality Check
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event.inputs.skip_lint != 'true' }}
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.ref || github.ref }}
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.11'
|
||||
cache: 'pip'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install --upgrade "setuptools<81"
|
||||
pip install gdtoolkit==4
|
||||
|
||||
- name: Run linting
|
||||
id: lint
|
||||
run: |
|
||||
echo "🔍 Running GDScript linting..."
|
||||
python tools/run_development.py --lint
|
||||
|
||||
- name: Upload linting results
|
||||
if: failure()
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: lint-results
|
||||
path: |
|
||||
**/*.gd
|
||||
retention-days: 7
|
||||
|
||||
test:
|
||||
name: Test Execution
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event.inputs.skip_tests != 'true' }}
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.ref || github.ref }}
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.11'
|
||||
cache: 'pip'
|
||||
|
||||
- name: Install Python dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install --upgrade "setuptools<81"
|
||||
pip install gdtoolkit==4
|
||||
|
||||
- name: Set up Godot
|
||||
uses: chickensoft-games/setup-godot@v1
|
||||
with:
|
||||
version: 4.3.0
|
||||
use-dotnet: false
|
||||
|
||||
- name: Run tests
|
||||
id: test
|
||||
run: |
|
||||
echo "🧪 Running GDScript tests..."
|
||||
python tools/run_development.py --test
|
||||
|
||||
- name: Upload test results
|
||||
if: failure()
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: test-results
|
||||
path: |
|
||||
tests/**/*.gd
|
||||
retention-days: 7
|
||||
|
||||
summary:
|
||||
name: CI Summary
|
||||
runs-on: ubuntu-latest
|
||||
needs: [format, lint, test]
|
||||
if: always()
|
||||
|
||||
steps:
|
||||
- name: Set workflow status
|
||||
id: status
|
||||
run: |
|
||||
format_status="${{ needs.format.result }}"
|
||||
lint_status="${{ needs.lint.result }}"
|
||||
test_status="${{ needs.test.result }}"
|
||||
|
||||
echo "📊 Workflow Results:"
|
||||
echo "🎨 Format: $format_status"
|
||||
echo "🔍 Lint: $lint_status"
|
||||
echo "🧪 Test: $test_status"
|
||||
|
||||
if [[ "$format_status" == "success" && "$lint_status" == "success" && ("$test_status" == "success" || "$test_status" == "skipped") ]]; then
|
||||
echo "overall_status=success" >> $GITHUB_OUTPUT
|
||||
echo "✅ All CI checks passed!"
|
||||
else
|
||||
echo "overall_status=failure" >> $GITHUB_OUTPUT
|
||||
echo "❌ Some CI checks failed"
|
||||
fi
|
||||
|
||||
- name: Comment on PR (if applicable)
|
||||
if: github.event_name == 'pull_request'
|
||||
uses: actions/github-script@v6
|
||||
with:
|
||||
script: |
|
||||
const formatStatus = '${{ needs.format.result }}';
|
||||
const lintStatus = '${{ needs.lint.result }}';
|
||||
const testStatus = '${{ needs.test.result }}';
|
||||
const overallStatus = '${{ steps.status.outputs.overall_status }}';
|
||||
|
||||
const getStatusEmoji = (status) => {
|
||||
switch(status) {
|
||||
case 'success': return '✅';
|
||||
case 'failure': return '❌';
|
||||
case 'skipped': return '⏭️';
|
||||
default: return '⚠️';
|
||||
}
|
||||
};
|
||||
|
||||
const message = `## 🤖 CI Pipeline Results
|
||||
|
||||
| Step | Status | Result |
|
||||
|------|--------|--------|
|
||||
| 🎨 Formatting | ${getStatusEmoji(formatStatus)} | ${formatStatus} |
|
||||
| 🔍 Linting | ${getStatusEmoji(lintStatus)} | ${lintStatus} |
|
||||
| 🧪 Testing | ${getStatusEmoji(testStatus)} | ${testStatus} |
|
||||
|
||||
**Overall Status:** ${getStatusEmoji(overallStatus)} ${overallStatus.toUpperCase()}
|
||||
|
||||
${overallStatus === 'success'
|
||||
? '🎉 All checks passed! This PR is ready for review.'
|
||||
: '⚠️ Some checks failed. Please review the workflow logs and fix any issues.'}
|
||||
|
||||
[View workflow run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})`;
|
||||
|
||||
github.rest.issues.createComment({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: message
|
||||
});
|
||||
|
||||
- name: Set final exit code
|
||||
run: |
|
||||
if [[ "${{ steps.status.outputs.overall_status }}" == "success" ]]; then
|
||||
echo "🎉 CI Pipeline completed successfully!"
|
||||
exit 0
|
||||
else
|
||||
echo "❌ CI Pipeline failed"
|
||||
exit 1
|
||||
fi
|
||||
1
.gitignore
vendored
@@ -5,3 +5,4 @@
|
||||
# Generated files
|
||||
*.tmp
|
||||
*.import~
|
||||
test_results.txt
|
||||
|
||||
11
CLAUDE.md
@@ -1,2 +1,9 @@
|
||||
- The documentation of the project is located in docs/ directory.
|
||||
So the docs\CLAUDE.md does. Get it in context before doing anything else.
|
||||
- The documentation of the project is located in docs/ directory;
|
||||
- Get following files in context before doing anything else:
|
||||
- docs\CLAUDE.md
|
||||
- docs\CODE_OF_CONDUCT.md
|
||||
- project.godot
|
||||
- Use TDD methodology for development;
|
||||
- Use static data types;
|
||||
- Keep documentation up to date;
|
||||
- Always run gdlint, gdformat and run tests;
|
||||
|
||||
97
DEVELOPMENT_TOOLS.md
Normal file
@@ -0,0 +1,97 @@
|
||||
# Development Tools
|
||||
|
||||
Development workflow tools for the Skelly Godot project.
|
||||
|
||||
Python script that handles code formatting, linting, and testing.
|
||||
|
||||
## Quick Start
|
||||
|
||||
Run all development checks (recommended for pre-commit):
|
||||
```bash
|
||||
run_dev.bat
|
||||
```
|
||||
|
||||
Runs code formatting → linting → testing.
|
||||
|
||||
## Available Commands
|
||||
|
||||
### Main Unified Script
|
||||
- **`run_dev.bat`** - Main unified development script with all functionality
|
||||
|
||||
### Individual Tools (Legacy - redirect to unified script)
|
||||
- **`run_all.bat`** - Same as `run_dev.bat` (legacy compatibility)
|
||||
- **`run_lint.bat`** - Run only linting (redirects to `run_dev.bat --lint`)
|
||||
- **`run_format.bat`** - Run only formatting (redirects to `run_dev.bat --format`)
|
||||
- **`run_tests.bat`** - Run only tests (redirects to `run_dev.bat --test`)
|
||||
|
||||
## Usage Examples
|
||||
|
||||
```bash
|
||||
# Run all checks (default behavior)
|
||||
run_dev.bat
|
||||
|
||||
# Run only specific tools
|
||||
run_dev.bat --lint
|
||||
run_dev.bat --format
|
||||
run_dev.bat --test
|
||||
|
||||
# Run custom workflow steps
|
||||
run_dev.bat --steps format lint
|
||||
run_dev.bat --steps format test
|
||||
|
||||
# Show help
|
||||
run_dev.bat --help
|
||||
```
|
||||
|
||||
## What Each Tool Does
|
||||
|
||||
### 🔍 Linting (`gdlint`)
|
||||
- Checks GDScript code for style violations
|
||||
- Enforces naming conventions
|
||||
- Validates code structure and patterns
|
||||
- **Fails the workflow if errors are found**
|
||||
|
||||
### 🎨 Formatting (`gdformat`)
|
||||
- Automatically formats GDScript code
|
||||
- Ensures consistent indentation and spacing
|
||||
- Fixes basic style issues
|
||||
- **Fails the workflow if files cannot be formatted**
|
||||
|
||||
### 🧪 Testing (`godot`)
|
||||
- Runs all test files in `tests/` directory
|
||||
- Executes Godot scripts in headless mode
|
||||
- Reports test results and failures
|
||||
- **Continues workflow even if tests fail** (for review)
|
||||
|
||||
## Dependencies
|
||||
|
||||
The script automatically checks for and provides installation instructions for:
|
||||
- Python 3.x
|
||||
- pip
|
||||
- Godot Engine (for tests)
|
||||
- gdtoolkit (gdlint, gdformat)
|
||||
|
||||
## Output Features
|
||||
|
||||
- Colorized output
|
||||
- Emoji status indicators
|
||||
- Tool summaries
|
||||
- Execution time tracking
|
||||
- Warning suppression
|
||||
|
||||
## Development Workflow
|
||||
|
||||
1. **Before committing**: Run `run_dev.bat` to ensure code quality
|
||||
2. **Fix any linting errors** - the workflow will abort on errors
|
||||
3. **Review any test failures** - tests don't abort workflow but should be addressed
|
||||
4. **Commit your changes** once all checks pass
|
||||
|
||||
## Integration
|
||||
|
||||
Works with:
|
||||
- Git hooks (pre-commit)
|
||||
- CI/CD pipelines
|
||||
- IDE integrations
|
||||
- Manual development workflow
|
||||
|
||||
Legacy batch files remain functional.
|
||||
@@ -22,402 +22,30 @@ audio:
|
||||
sprites:
|
||||
characters:
|
||||
skeleton:
|
||||
"Skeleton Attack.png":
|
||||
"assets/sprites/characters/skeleton/*":
|
||||
source: "https://jesse-m.itch.io/skeleton-pack"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Skeleton Pack by Jesse M"
|
||||
modifications: ""
|
||||
usage: "Skeleton character attack animation sprite"
|
||||
usage: "Placeholder for animation sprites"
|
||||
|
||||
"Skeleton Dead.png":
|
||||
source: "https://jesse-m.itch.io/skeleton-pack"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Skeleton Pack by Jesse M"
|
||||
skulls:
|
||||
"assets/sprites/skulls/*":
|
||||
source: "https://gitea.nett00n.org/nett00n/pixelart/src/branch/main/pixelorama/2025-skelly-assests"
|
||||
license: "CC"
|
||||
attribution: "Skelly icons by @nett00n"
|
||||
modifications: ""
|
||||
usage: "Skeleton character death animation sprite"
|
||||
|
||||
"Skeleton Hit.png":
|
||||
source: "https://jesse-m.itch.io/skeleton-pack"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Skeleton Pack by Jesse M"
|
||||
modifications: ""
|
||||
usage: "Skeleton character hit reaction animation sprite"
|
||||
|
||||
"Skeleton Idle.png":
|
||||
source: "https://jesse-m.itch.io/skeleton-pack"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Skeleton Pack by Jesse M"
|
||||
modifications: ""
|
||||
usage: "Skeleton character idle animation sprite"
|
||||
|
||||
"Skeleton React.png":
|
||||
source: "https://jesse-m.itch.io/skeleton-pack"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Skeleton Pack by Jesse M"
|
||||
modifications: ""
|
||||
usage: "Skeleton character reaction animation sprite"
|
||||
|
||||
"Skeleton Walk.png":
|
||||
source: "https://jesse-m.itch.io/skeleton-pack"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Skeleton Pack by Jesse M"
|
||||
modifications: ""
|
||||
usage: "Skeleton character walking animation sprite"
|
||||
|
||||
gems:
|
||||
# Blue gems
|
||||
"bg_08.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Blue gem sprite for Match-3 gameplay"
|
||||
|
||||
"bg_16a.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Blue gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"bg_19.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Blue gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"bg_26.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Blue gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"bg_27.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Blue gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"bg_28.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Blue gem variant sprite for Match-3 gameplay"
|
||||
|
||||
# Dark/Gray gems
|
||||
"dg_08.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Dark gem sprite for Match-3 gameplay"
|
||||
|
||||
"dg_16a.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Dark gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"dg_19.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Dark gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"dg_26.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Dark gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"dg_27.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Dark gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"dg_28.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Dark gem variant sprite for Match-3 gameplay"
|
||||
|
||||
# Green gems
|
||||
"gg_08.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Green gem sprite for Match-3 gameplay"
|
||||
|
||||
"gg_16a.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Green gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"gg_19.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Green gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"gg_26.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Green gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"gg_27.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Green gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"gg_28.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Green gem variant sprite for Match-3 gameplay"
|
||||
|
||||
# Magenta gems
|
||||
"mg_08.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Magenta gem sprite for Match-3 gameplay"
|
||||
|
||||
"mg_16a.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Magenta gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"mg_19.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Magenta gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"mg_26.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Magenta gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"mg_27.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Magenta gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"mg_28.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Magenta gem variant sprite for Match-3 gameplay"
|
||||
|
||||
# Purple gems
|
||||
"pg_08.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Purple gem sprite for Match-3 gameplay"
|
||||
|
||||
"pg_16a.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Purple gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"pg_19.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Purple gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"pg_26.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Purple gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"pg_27.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Purple gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"pg_28.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Purple gem variant sprite for Match-3 gameplay"
|
||||
|
||||
# Red gems
|
||||
"rg_08.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Red gem sprite for Match-3 gameplay"
|
||||
|
||||
"rg_16a.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Red gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"rg_19.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Red gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"rg_26.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Red gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"rg_27.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Red gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"rg_28.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Red gem variant sprite for Match-3 gameplay"
|
||||
|
||||
# Silver gems
|
||||
"sg_08.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Silver gem sprite for Match-3 gameplay"
|
||||
|
||||
"sg_16a.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Silver gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"sg_19.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Silver gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"sg_26.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Silver gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"sg_27.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Silver gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"sg_28.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Silver gem variant sprite for Match-3 gameplay"
|
||||
|
||||
# Yellow gems
|
||||
"yg_08.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Yellow gem sprite for Match-3 gameplay"
|
||||
|
||||
"yg_16a.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Yellow gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"yg_19.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Yellow gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"yg_26.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Yellow gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"yg_27.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Yellow gem variant sprite for Match-3 gameplay"
|
||||
|
||||
"yg_28.png":
|
||||
source: "https://ilustragm.itch.io/gems-icon-01-free"
|
||||
license: "" # TODO: Verify license from itch.io page
|
||||
attribution: "Gems Icon 01 Free by IlustraGM"
|
||||
modifications: ""
|
||||
usage: "Yellow gem variant sprite for Match-3 gameplay"
|
||||
usage: ""
|
||||
|
||||
Referenced in original sources.yaml but file not found:
|
||||
textures:
|
||||
backgrounds:
|
||||
"beanstalk-dark.webp":
|
||||
source: "https://www.toptal.com/designers/subtlepatterns/beanstalk-dark-pattern/"
|
||||
license: "" # TODO: Verify license and locate file
|
||||
attribution: "Beanstalk Dark pattern from Subtle Patterns"
|
||||
"BG.pg":
|
||||
source: "https://gitea.nett00n.org/nett00n/pixelart/src/branch/main/pixelorama/2025-skelly-assests"
|
||||
license: "CC"
|
||||
attribution: "Skelly icons by @nett00n"
|
||||
modifications: ""
|
||||
usage: "Background texture (file location TBD)"
|
||||
usage: ""
|
||||
|
||||
# TODO: Verify all license information by visiting source URLs
|
||||
# TODO: Check for any missing assets not documented here
|
||||
|
||||
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 39 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dlsbyeg6yk0w6"
|
||||
path="res://.godot/imported/bg_27.png-8491443789e609ccfc8571a594dabe15.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/bg_27.png"
|
||||
dest_files=["res://.godot/imported/bg_27.png-8491443789e609ccfc8571a594dabe15.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dww0yjm6dlopu"
|
||||
path="res://.godot/imported/bg_28.png-50f87b44c958560beabb6031acaef57e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/bg_28.png"
|
||||
dest_files=["res://.godot/imported/bg_28.png-50f87b44c958560beabb6031acaef57e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 30 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dudk2umu5bvgs"
|
||||
path="res://.godot/imported/dg_08.png-e1ad7182c2f8d65510dbdc48ab5e4466.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/dg_08.png"
|
||||
dest_files=["res://.godot/imported/dg_08.png-e1ad7182c2f8d65510dbdc48ab5e4466.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 32 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b533hi1ykb8tq"
|
||||
path="res://.godot/imported/dg_16a.png-d922762d7a12e7fedcafa504db3276a3.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/dg_16a.png"
|
||||
dest_files=["res://.godot/imported/dg_16a.png-d922762d7a12e7fedcafa504db3276a3.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 32 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b2bcge834ofx4"
|
||||
path="res://.godot/imported/dg_19.png-afb0e64c485081fd339ad679d8fbe83d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/dg_19.png"
|
||||
dest_files=["res://.godot/imported/dg_19.png-afb0e64c485081fd339ad679d8fbe83d.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 32 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b3fbxbrovpd2o"
|
||||
path="res://.godot/imported/dg_26.png-4a2ce0c663c3dde56c5eaddc73ed19f5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/dg_26.png"
|
||||
dest_files=["res://.godot/imported/dg_26.png-4a2ce0c663c3dde56c5eaddc73ed19f5.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 31 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d07se104e7lyj"
|
||||
path="res://.godot/imported/dg_28.png-f00e0bdc25ddb8fcf937676717224cc6.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/dg_28.png"
|
||||
dest_files=["res://.godot/imported/dg_28.png-f00e0bdc25ddb8fcf937676717224cc6.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dviy4od6h6kc5"
|
||||
path="res://.godot/imported/gg_08.png-8ceea676909f242ccf3635c56435dbfc.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/gg_08.png"
|
||||
dest_files=["res://.godot/imported/gg_08.png-8ceea676909f242ccf3635c56435dbfc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 36 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://droomr4cpxa47"
|
||||
path="res://.godot/imported/gg_16a.png-a5f2d2d1bf82cb409314e2c8eb765957.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/gg_16a.png"
|
||||
dest_files=["res://.godot/imported/gg_16a.png-a5f2d2d1bf82cb409314e2c8eb765957.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 37 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bpidytlj8h7yb"
|
||||
path="res://.godot/imported/gg_19.png-21aedfea8e7e0a9e8f12ffd11c216539.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/gg_19.png"
|
||||
dest_files=["res://.godot/imported/gg_19.png-21aedfea8e7e0a9e8f12ffd11c216539.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 41 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b7nj55ci3d1vn"
|
||||
path="res://.godot/imported/gg_27.png-281ebc39017ff87a83dc3f919a122e1e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/gg_27.png"
|
||||
dest_files=["res://.godot/imported/gg_27.png-281ebc39017ff87a83dc3f919a122e1e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c8bbejkkehjgk"
|
||||
path="res://.godot/imported/mg_08.png-35fde37512dd0392d35e6c651c76e09f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/mg_08.png"
|
||||
dest_files=["res://.godot/imported/mg_08.png-35fde37512dd0392d35e6c651c76e09f.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 38 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dnjoksww7jlgw"
|
||||
path="res://.godot/imported/mg_16a.png-7ae849d894d79a0049515a7654200f21.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/mg_16a.png"
|
||||
dest_files=["res://.godot/imported/mg_16a.png-7ae849d894d79a0049515a7654200f21.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 38 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b0r6qvbc33ymb"
|
||||
path="res://.godot/imported/mg_19.png-e6ce2a91f95c7d9707148890e7bcdd52.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/mg_19.png"
|
||||
dest_files=["res://.godot/imported/mg_19.png-e6ce2a91f95c7d9707148890e7bcdd52.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 43 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cm2ihgxtfdb51"
|
||||
path="res://.godot/imported/mg_27.png-fe3b6731a968b3e67a715e17ffc02b4c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/mg_27.png"
|
||||
dest_files=["res://.godot/imported/mg_27.png-fe3b6731a968b3e67a715e17ffc02b4c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 40 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dp6hg741v6nl4"
|
||||
path="res://.godot/imported/mg_28.png-ada23e8ea33e5c01e3f34a309139a6ef.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/mg_28.png"
|
||||
dest_files=["res://.godot/imported/mg_28.png-ada23e8ea33e5c01e3f34a309139a6ef.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://btxdn0rakcngf"
|
||||
path="res://.godot/imported/pg_08.png-40b30ef563993bb977520b1d559ccd96.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/pg_08.png"
|
||||
dest_files=["res://.godot/imported/pg_08.png-40b30ef563993bb977520b1d559ccd96.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 40 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d2wo7k33lptr1"
|
||||
path="res://.godot/imported/pg_16a.png-a6f68855a1651d866c9eaf27ab706d73.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/pg_16a.png"
|
||||
dest_files=["res://.godot/imported/pg_16a.png-a6f68855a1651d866c9eaf27ab706d73.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 39 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b3e3au4w7yy1c"
|
||||
path="res://.godot/imported/pg_19.png-3c63dbcd07560310e8fdbf2ac375880e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/pg_19.png"
|
||||
dest_files=["res://.godot/imported/pg_19.png-3c63dbcd07560310e8fdbf2ac375880e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 40 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b18o5lxlcgnfx"
|
||||
path="res://.godot/imported/pg_26.png-7aaab46733f9253fac60fe2a5fecdef9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/pg_26.png"
|
||||
dest_files=["res://.godot/imported/pg_26.png-7aaab46733f9253fac60fe2a5fecdef9.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 43 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bkih4lj2fntas"
|
||||
path="res://.godot/imported/pg_27.png-ee0e201631ac62b45cf78a5ba2d54596.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/pg_27.png"
|
||||
dest_files=["res://.godot/imported/pg_27.png-ee0e201631ac62b45cf78a5ba2d54596.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 40 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://blai6fdbpxuyp"
|
||||
path="res://.godot/imported/pg_28.png-6ff41398a128c0b35d6b8332a50f0824.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/pg_28.png"
|
||||
dest_files=["res://.godot/imported/pg_28.png-6ff41398a128c0b35d6b8332a50f0824.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 32 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dqyqpdyg8e4ek"
|
||||
path="res://.godot/imported/rg_08.png-e769805e5236318cdcf487b1daa0ab70.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/rg_08.png"
|
||||
dest_files=["res://.godot/imported/rg_08.png-e769805e5236318cdcf487b1daa0ab70.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b3uk7br2yqsyr"
|
||||
path="res://.godot/imported/rg_16a.png-e568944ca0d125c92b232ea737af957f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/rg_16a.png"
|
||||
dest_files=["res://.godot/imported/rg_16a.png-e568944ca0d125c92b232ea737af957f.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ccprr0qrj3lgm"
|
||||
path="res://.godot/imported/rg_19.png-3dfdfcd3f45c9c1e87986c34ed27d65c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/rg_19.png"
|
||||
dest_files=["res://.godot/imported/rg_19.png-3dfdfcd3f45c9c1e87986c34ed27d65c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 33 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://1no532mlqarb"
|
||||
path="res://.godot/imported/rg_26.png-6529b3c79947f4ba5c25f580580ec971.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/rg_26.png"
|
||||
dest_files=["res://.godot/imported/rg_26.png-6529b3c79947f4ba5c25f580580ec971.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 38 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://co7th1qwwxjxn"
|
||||
path="res://.godot/imported/rg_27.png-8938004b9628f8aeda9262bd786db5a9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/rg_27.png"
|
||||
dest_files=["res://.godot/imported/rg_27.png-8938004b9628f8aeda9262bd786db5a9.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 34 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://fq4b5b1v6icy"
|
||||
path="res://.godot/imported/rg_28.png-2e048e93fec1403b6ea21c5b1935881c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/rg_28.png"
|
||||
dest_files=["res://.godot/imported/rg_28.png-2e048e93fec1403b6ea21c5b1935881c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 32 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ceybivs04remb"
|
||||
path="res://.godot/imported/sg_08.png-456e723109256e511e4f59271e89a1dd.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/sg_08.png"
|
||||
dest_files=["res://.godot/imported/sg_08.png-456e723109256e511e4f59271e89a1dd.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c6qtlkpw58jpy"
|
||||
path="res://.godot/imported/sg_16a.png-129415a1b75d4949e50f566399c1150f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/sg_16a.png"
|
||||
dest_files=["res://.godot/imported/sg_16a.png-129415a1b75d4949e50f566399c1150f.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d28axjhxribfq"
|
||||
path="res://.godot/imported/sg_19.png-b1ea45054dc2728d8236c4180e75429d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/sg_19.png"
|
||||
dest_files=["res://.godot/imported/sg_19.png-b1ea45054dc2728d8236c4180e75429d.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 36 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://yh45c4sn7skv"
|
||||
path="res://.godot/imported/sg_26.png-57245822a5996857fe99d4c26a38369c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/sg_26.png"
|
||||
dest_files=["res://.godot/imported/sg_26.png-57245822a5996857fe99d4c26a38369c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 39 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://decoapdi0m4x4"
|
||||
path="res://.godot/imported/sg_27.png-6d03db4a93eb8c2abbb0bcbe2d02927d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/sg_27.png"
|
||||
dest_files=["res://.godot/imported/sg_27.png-6d03db4a93eb8c2abbb0bcbe2d02927d.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bysfv51t2uous"
|
||||
path="res://.godot/imported/sg_28.png-918eb466ccc52f61327fde547e81c4de.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/sg_28.png"
|
||||
dest_files=["res://.godot/imported/sg_28.png-918eb466ccc52f61327fde547e81c4de.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 34 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dr4i4iefhp77u"
|
||||
path="res://.godot/imported/yg_08.png-d1b083515e21d446d6c29169ce52b36e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/yg_08.png"
|
||||
dest_files=["res://.godot/imported/yg_08.png-d1b083515e21d446d6c29169ce52b36e.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 39 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cmdr0kpteuyyp"
|
||||
path="res://.godot/imported/yg_16a.png-092b1b0a8f3c20aca96f1319c03fc488.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/yg_16a.png"
|
||||
dest_files=["res://.godot/imported/yg_16a.png-092b1b0a8f3c20aca96f1319c03fc488.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 38 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dghi2vaasxka7"
|
||||
path="res://.godot/imported/yg_19.png-522df55e2af2ebec602812d3efd2c465.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/yg_19.png"
|
||||
dest_files=["res://.godot/imported/yg_19.png-522df55e2af2ebec602812d3efd2c465.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 37 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://q0e2ygr3bpmp"
|
||||
path="res://.godot/imported/yg_26.png-8d3139f65b23caee79ec7ed924daf47d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/yg_26.png"
|
||||
dest_files=["res://.godot/imported/yg_26.png-8d3139f65b23caee79ec7ed924daf47d.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 43 KiB |
@@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bp3gfawevhvpo"
|
||||
path="res://.godot/imported/yg_27.png-8c9608e70f18cfd76ba523f0a4cc04eb.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/yg_27.png"
|
||||
dest_files=["res://.godot/imported/yg_27.png-8c9608e70f18cfd76ba523f0a4cc04eb.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
Before Width: | Height: | Size: 38 KiB |
BIN
assets/sprites/skulls/blue.png
Normal file
|
After Width: | Height: | Size: 205 B |
@@ -2,16 +2,16 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://k7gps0h2l8k7"
|
||||
path="res://.godot/imported/dg_27.png-9c3dcc1b6a689af674d8f443d6f956db.ctex"
|
||||
uid="uid://dxq2ab2uo3fel"
|
||||
path="res://.godot/imported/blue.png-a5b81332a57b3efef9a75dd151a28d11.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/dg_27.png"
|
||||
dest_files=["res://.godot/imported/dg_27.png-9c3dcc1b6a689af674d8f443d6f956db.ctex"]
|
||||
source_file="res://assets/sprites/skulls/blue.png"
|
||||
dest_files=["res://.godot/imported/blue.png-a5b81332a57b3efef9a75dd151a28d11.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
BIN
assets/sprites/skulls/dark-blue.png
Normal file
|
After Width: | Height: | Size: 205 B |
34
assets/sprites/skulls/dark-blue.png.import
Normal file
@@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bma78772dfdq3"
|
||||
path="res://.godot/imported/dark-blue.png-59d632e889a5b721da0ae18edaed44bb.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/skulls/dark-blue.png"
|
||||
dest_files=["res://.godot/imported/dark-blue.png-59d632e889a5b721da0ae18edaed44bb.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
BIN
assets/sprites/skulls/green.png
Normal file
|
After Width: | Height: | Size: 197 B |
@@ -2,16 +2,16 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bioo5u6uq721j"
|
||||
path="res://.godot/imported/bg_19.png-bbd365f1499e75ecf2933feb96ad1bed.ctex"
|
||||
uid="uid://bodkdsn8aqcs0"
|
||||
path="res://.godot/imported/green.png-ff6e1cc04288883fe02a8594d666e276.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/sprites/gems/bg_19.png"
|
||||
dest_files=["res://.godot/imported/bg_19.png-bbd365f1499e75ecf2933feb96ad1bed.ctex"]
|
||||
source_file="res://assets/sprites/skulls/green.png"
|
||||
dest_files=["res://.godot/imported/green.png-ff6e1cc04288883fe02a8594d666e276.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
BIN
assets/sprites/skulls/grey.png
Normal file
|
After Width: | Height: | Size: 205 B |