forked from hiulit/Godot-3-2D-Fake-Explosion-Particles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
84 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.DS_Store | ||
|
||
# Godot-specific ignores | ||
.godot/ | ||
.import/ | ||
export.cfg | ||
export_presets.cfg | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,10 @@ | |
|
||
* Up to date | ||
|
||
## [1.1.0] - 2024-04-12 | ||
|
||
* Update to Godot 4.X. | ||
|
||
## [1.0.0] - 2019-12-09 | ||
|
||
* Released stable version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[gd_resource type="Environment" load_steps=2 format=2] | ||
[gd_resource type="Environment" load_steps=2 format=3 uid="uid://dlx4e1y8c86o0"] | ||
|
||
[sub_resource type="ProceduralSky" id=1] | ||
[sub_resource type="Sky" id="1"] | ||
|
||
[resource] | ||
background_mode = 2 | ||
background_sky = SubResource( 1 ) | ||
sky = SubResource("1") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
[remap] | ||
|
||
importer="texture" | ||
type="StreamTexture" | ||
path="res://.import/parameters.png-9053545c3e359bec86bda0f3a13d608f.stex" | ||
type="CompressedTexture2D" | ||
uid="uid://0t76s727pbjk" | ||
path="res://.godot/imported/parameters.png-9053545c3e359bec86bda0f3a13d608f.ctex" | ||
metadata={ | ||
"vram_texture": false | ||
} | ||
|
||
[deps] | ||
|
||
source_file="res://examples/parameters.png" | ||
dest_files=[ "res://.import/parameters.png-9053545c3e359bec86bda0f3a13d608f.stex" ] | ||
dest_files=["res://.godot/imported/parameters.png-9053545c3e359bec86bda0f3a13d608f.ctex"] | ||
|
||
[params] | ||
|
||
compress/mode=0 | ||
compress/high_quality=false | ||
compress/lossy_quality=0.7 | ||
compress/hdr_mode=0 | ||
compress/bptc_ldr=0 | ||
compress/hdr_compression=1 | ||
compress/normal_map=0 | ||
flags/repeat=0 | ||
flags/filter=true | ||
flags/mipmaps=false | ||
flags/anisotropic=false | ||
flags/srgb=2 | ||
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/HDR_as_SRGB=false | ||
process/invert_color=false | ||
stream=false | ||
size_limit=0 | ||
detect_3d=true | ||
svg/scale=1.0 | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[gd_scene load_steps=2 format=2] | ||
[gd_scene load_steps=2 format=3 uid="uid://rgllydtafknq"] | ||
|
||
[ext_resource path="res://fake_explosion_particles.gd" type="Script" id=1] | ||
[ext_resource type="Script" path="res://fake_explosion_particles.gd" id="1"] | ||
|
||
[node name="fake_explosion_particles" type="Node2D"] | ||
script = ExtResource( 1 ) | ||
script = ExtResource("1") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[gd_scene load_steps=2 format=2] | ||
[gd_scene load_steps=2 format=3 uid="uid://d141yw6hqkxga"] | ||
|
||
[ext_resource path="res://fake_explosion_particles.tscn" type="PackedScene" id=1] | ||
[ext_resource type="PackedScene" uid="uid://rgllydtafknq" path="res://fake_explosion_particles.tscn" id="1"] | ||
|
||
[node name="test" type="Node2D"] | ||
|
||
[node name="fake_explosion_particles" parent="." instance=ExtResource( 1 )] | ||
position = Vector2( 160, 90 ) | ||
[node name="fake_explosion_particles" parent="." instance=ExtResource("1")] | ||
position = Vector2(160, 90) |