2019-11-27 22:25:07 +01:00
|
|
|
[gd_scene load_steps=13 format=2]
|
2019-11-22 13:38:50 +01:00
|
|
|
|
|
|
|
[ext_resource path="res://src/Piece.gd" type="Script" id=1]
|
2019-11-27 13:55:08 +01:00
|
|
|
[ext_resource path="res://assets/escher_lizards.jpg" type="Texture" id=2]
|
2019-11-22 13:38:50 +01:00
|
|
|
|
2019-12-02 13:42:02 +01:00
|
|
|
[sub_resource type="VisualShaderNodeVec3Constant" id=1]
|
2019-11-27 22:25:07 +01:00
|
|
|
constant = Vector3( 0.3, 0.3, 0 )
|
|
|
|
|
2019-12-02 13:42:02 +01:00
|
|
|
[sub_resource type="VisualShaderNodeTexture" id=2]
|
2019-11-27 13:55:08 +01:00
|
|
|
output_port_for_preview = 0
|
|
|
|
texture = ExtResource( 2 )
|
2019-11-27 00:50:35 +01:00
|
|
|
|
2019-12-02 13:42:02 +01:00
|
|
|
[sub_resource type="VisualShaderNodeInput" id=3]
|
2019-11-27 13:55:08 +01:00
|
|
|
output_port_for_preview = 0
|
|
|
|
input_name = "uv"
|
|
|
|
|
2019-12-02 13:42:02 +01:00
|
|
|
[sub_resource type="VisualShaderNodeVectorOp" id=4]
|
2019-11-27 13:55:08 +01:00
|
|
|
output_port_for_preview = 0
|
2019-11-27 22:25:07 +01:00
|
|
|
default_input_values = [ 0, Vector3( 0, 0, 0 ), 1, Vector3( 0.25, 0.25, 1 ) ]
|
2019-11-27 13:55:08 +01:00
|
|
|
operator = 2
|
|
|
|
|
2019-12-02 13:42:02 +01:00
|
|
|
[sub_resource type="VisualShaderNodeVectorOp" id=5]
|
2019-11-27 13:55:08 +01:00
|
|
|
default_input_values = [ 0, Vector3( 0, 0, 0 ), 1, Vector3( 0.8, 0.1, 0 ) ]
|
2019-11-27 00:50:35 +01:00
|
|
|
|
2019-12-02 13:42:02 +01:00
|
|
|
[sub_resource type="VisualShaderNodeVec3Uniform" id=6]
|
2019-11-27 13:55:08 +01:00
|
|
|
uniform_name = "scale"
|
|
|
|
|
2019-12-02 13:42:02 +01:00
|
|
|
[sub_resource type="VisualShaderNodeVec3Uniform" id=7]
|
2019-11-27 13:55:08 +01:00
|
|
|
uniform_name = "offset"
|
|
|
|
|
2019-12-02 13:42:02 +01:00
|
|
|
[sub_resource type="VisualShaderNodeVec3Constant" id=8]
|
2019-11-27 22:25:07 +01:00
|
|
|
constant = Vector3( 0.25, 0.25, 1 )
|
|
|
|
|
2019-12-02 13:42:02 +01:00
|
|
|
[sub_resource type="VisualShader" id=9]
|
2019-11-27 13:55:08 +01:00
|
|
|
code = "shader_type canvas_item;
|
|
|
|
uniform vec3 scale;
|
|
|
|
uniform vec3 offset;
|
|
|
|
uniform sampler2D tex_frg_3;
|
2019-11-27 00:50:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
void vertex() {
|
|
|
|
// Output:0
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void fragment() {
|
2019-11-27 13:55:08 +01:00
|
|
|
// Input:4
|
|
|
|
vec3 n_out4p0;
|
|
|
|
n_out4p0 = vec3(UV,0.0);
|
|
|
|
|
|
|
|
// VectorUniform:7
|
|
|
|
vec3 n_out7p0;
|
|
|
|
n_out7p0 = scale;
|
|
|
|
|
|
|
|
// VectorOp:5
|
|
|
|
vec3 n_out5p0;
|
|
|
|
n_out5p0 = n_out4p0 * n_out7p0;
|
|
|
|
|
|
|
|
// VectorUniform:8
|
|
|
|
vec3 n_out8p0;
|
|
|
|
n_out8p0 = offset;
|
|
|
|
|
|
|
|
// VectorOp:6
|
|
|
|
vec3 n_out6p0;
|
|
|
|
n_out6p0 = n_out5p0 + n_out8p0;
|
|
|
|
|
|
|
|
// Texture:3
|
|
|
|
vec3 n_out3p0;
|
|
|
|
float n_out3p1;
|
|
|
|
vec4 tex_frg_3_read = texture( tex_frg_3 , n_out6p0.xy );
|
|
|
|
n_out3p0 = tex_frg_3_read.rgb;
|
|
|
|
n_out3p1 = tex_frg_3_read.a;
|
2019-11-27 00:50:35 +01:00
|
|
|
|
|
|
|
// Output:0
|
2019-11-27 13:55:08 +01:00
|
|
|
COLOR.rgb = n_out3p0;
|
2019-11-27 00:50:35 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void light() {
|
|
|
|
// Output:0
|
|
|
|
|
|
|
|
}
|
|
|
|
"
|
2020-02-09 17:01:32 +01:00
|
|
|
graph_offset = Vector2( 0, 75 )
|
2019-11-27 00:50:35 +01:00
|
|
|
mode = 1
|
|
|
|
flags/light_only = false
|
2019-11-27 13:55:08 +01:00
|
|
|
nodes/fragment/0/position = Vector2( 1080, 160 )
|
2019-12-02 13:42:02 +01:00
|
|
|
nodes/fragment/3/node = SubResource( 2 )
|
2019-11-27 13:55:08 +01:00
|
|
|
nodes/fragment/3/position = Vector2( 820, 120 )
|
2019-12-02 13:42:02 +01:00
|
|
|
nodes/fragment/4/node = SubResource( 3 )
|
2019-11-27 22:25:07 +01:00
|
|
|
nodes/fragment/4/position = Vector2( 40, 60 )
|
2019-12-02 13:42:02 +01:00
|
|
|
nodes/fragment/5/node = SubResource( 4 )
|
2019-11-27 22:25:07 +01:00
|
|
|
nodes/fragment/5/position = Vector2( 360, 80 )
|
2019-12-02 13:42:02 +01:00
|
|
|
nodes/fragment/6/node = SubResource( 5 )
|
2019-11-27 22:25:07 +01:00
|
|
|
nodes/fragment/6/position = Vector2( 620, 240 )
|
2019-12-02 13:42:02 +01:00
|
|
|
nodes/fragment/7/node = SubResource( 6 )
|
2019-11-27 22:25:07 +01:00
|
|
|
nodes/fragment/7/position = Vector2( 40, 240 )
|
2019-12-02 13:42:02 +01:00
|
|
|
nodes/fragment/8/node = SubResource( 7 )
|
2019-11-27 22:25:07 +01:00
|
|
|
nodes/fragment/8/position = Vector2( 360, 380 )
|
2019-12-02 13:42:02 +01:00
|
|
|
nodes/fragment/9/node = SubResource( 8 )
|
2019-11-27 22:25:07 +01:00
|
|
|
nodes/fragment/9/position = Vector2( 40, 300 )
|
2019-12-02 13:42:02 +01:00
|
|
|
nodes/fragment/11/node = SubResource( 1 )
|
2019-11-27 22:25:07 +01:00
|
|
|
nodes/fragment/11/position = Vector2( 360, 440 )
|
2019-11-27 13:55:08 +01:00
|
|
|
nodes/fragment/connections = PoolIntArray( 3, 0, 0, 0, 4, 0, 5, 0, 5, 0, 6, 0, 6, 0, 3, 0, 7, 0, 5, 1, 8, 0, 6, 1 )
|
|
|
|
|
2019-12-02 13:42:02 +01:00
|
|
|
[sub_resource type="ShaderMaterial" id=10]
|
|
|
|
shader = SubResource( 9 )
|
|
|
|
shader_param/scale = Vector3( 0.25, 0.25, 1 )
|
|
|
|
shader_param/offset = Vector3( 0, 0, 0 )
|
2019-11-27 00:50:35 +01:00
|
|
|
|
2019-11-25 01:16:06 +01:00
|
|
|
[node name="Piece" type="Node2D"]
|
2019-11-22 13:38:50 +01:00
|
|
|
script = ExtResource( 1 )
|
2019-12-03 13:50:42 +01:00
|
|
|
size = 64
|
2019-11-25 01:16:06 +01:00
|
|
|
|
2019-11-27 00:50:35 +01:00
|
|
|
[node name="ColorRect" type="ColorRect" parent="."]
|
2019-12-02 13:42:02 +01:00
|
|
|
material = SubResource( 10 )
|
2019-11-27 00:50:35 +01:00
|
|
|
anchor_right = 1.0
|
|
|
|
anchor_bottom = 1.0
|
2019-11-27 13:55:08 +01:00
|
|
|
margin_right = 64.0
|
|
|
|
margin_bottom = 64.0
|
2020-02-09 17:01:32 +01:00
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|
2019-11-27 00:50:35 +01:00
|
|
|
|
|
|
|
[node name="Label" type="Label" parent="ColorRect"]
|
|
|
|
margin_left = 10.0
|
|
|
|
margin_top = 10.0
|
|
|
|
margin_right = 50.0
|
|
|
|
margin_bottom = 50.0
|
|
|
|
rect_scale = Vector2( 3, 3 )
|
|
|
|
rect_clip_content = true
|
|
|
|
size_flags_vertical = 1
|
2019-11-25 01:16:06 +01:00
|
|
|
custom_colors/font_color = Color( 0, 0, 0, 1 )
|
2019-11-27 00:50:35 +01:00
|
|
|
text = "0"
|
2020-02-09 17:01:32 +01:00
|
|
|
__meta__ = {
|
|
|
|
"_edit_use_anchors_": false
|
|
|
|
}
|