monster01 03 设计迭代
|
After Width: | Height: | Size: 938 B |
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://usgu2suw017u"
|
||||||
|
path="res://.godot/imported/readiness_lock.png-dfbd117a97d33beeb0a20039bd6426e2.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://render/texture/decal/readiness_lock.png"
|
||||||
|
dest_files=["res://.godot/imported/readiness_lock.png-dfbd117a97d33beeb0a20039bd6426e2.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=0
|
||||||
|
compress/normal_map=2
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=false
|
||||||
|
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=0
|
||||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.1 KiB |
@ -0,0 +1,12 @@
|
|||||||
|
[gd_scene load_steps=3 format=3 uid="uid://cq03usrdvv43o"]
|
||||||
|
|
||||||
|
[ext_resource type="Texture2D" uid="uid://usgu2suw017u" path="res://render/texture/decal/readiness_lock.png" id="1_1hvll"]
|
||||||
|
[ext_resource type="Script" path="res://script/effect/readiness_lock.gd" id="2_hf851"]
|
||||||
|
|
||||||
|
[node name="ReadinessLock" type="Decal"]
|
||||||
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.358925, 0)
|
||||||
|
size = Vector3(1, 1, 1)
|
||||||
|
texture_albedo = ExtResource("1_1hvll")
|
||||||
|
normal_fade = 0.999
|
||||||
|
cull_mask = 1
|
||||||
|
script = ExtResource("2_hf851")
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
extends Decal
|
||||||
|
class_name ReadinessLock
|
||||||
|
|
||||||
|
func _process(delta: float) -> void:
|
||||||
|
rotation_degrees.y += delta * 90
|
||||||