Basing world coloring works.

This commit is contained in:
Martin Felis
2024-01-27 00:05:04 +01:00
parent 00d3088e21
commit 4501b19bc4
16 changed files with 318 additions and 51 deletions
-1
View File
@@ -14,7 +14,6 @@ script = ExtResource("1_7jqda")
[node name="Viewport" type="SubViewport" parent="."]
own_world_3d = true
world_3d = SubResource("World3D_5g233")
size = Vector2i(256, 256)
[node name="World" parent="Viewport" instance=ExtResource("2_voimb")]
+51 -2
View File
@@ -2,16 +2,65 @@ extends Node3D
@onready var player1: CharacterBody3D = $Player1
@onready var camera: Camera3D = $Camera3D
@onready var level: Node3D = $Level
@onready var world_coloring_viewport: SubViewport = $WorldColoringViewport
@onready var world_coloring_player1_texture_rect: TextureRect = $WorldColoringViewport/Player1TextureRect
var camera_offset: Vector3;
var world_coloring_material: ShaderMaterial
var world_coloring_texture: ImageTexture
var world_coloring_image: Image
const player_mask_texture: = preload("res://assets/textures/player_draw_mask.png")
var player_mask_image: ImageTexture;
# Called when the node enters the scene tree for the first time.
func _ready():
camera_offset = camera.global_position - player1.global_position
pass # Replace with function body.
world_coloring_material = load("res://materials/WorldColoringMaterialPass.tres")
world_coloring_material.set_shader_parameter("world_color_texture", world_coloring_texture)
world_coloring_image = Image.create(1000, 1000, 0, Image.FORMAT_RGBA8);
world_coloring_image.fill(Color(1, 0, 1, 1))
world_coloring_texture = ImageTexture.create_from_image(world_coloring_image)
apply_world_coloring_recursive(level)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
func _process(_delta):
camera.global_position = player1.global_position + camera_offset
pass
func _physics_process(_delta):
#var player_world_color_coordinate : Vector2 = player1.global_position
var world_coloring_player1_rect : Rect2
world_coloring_player1_rect.position = player_position_to_world_coloring_position(player1.global_position)
world_coloring_player1_rect.size = Vector2(10, 10)
world_coloring_image.fill_rect(world_coloring_player1_rect, player1.color)
world_coloring_texture = ImageTexture.create_from_image(world_coloring_image)
apply_world_coloring_recursive(level)
func player_position_to_world_coloring_position(position: Vector3):
var result = Vector2 (position.x * 10 + 495, position.z * 10 + 495)
return result;
func apply_world_coloring_recursive (node):
for child in node.get_children():
var mesh_instance := child as MeshInstance3D
if mesh_instance:
assign_world_coloring_pass(mesh_instance)
apply_world_coloring_recursive(child)
func assign_world_coloring_pass(mesh_instance: MeshInstance3D) -> void:
var material = mesh_instance.get_active_material(0)
if not material:
return
var world_coloring_pass :ShaderMaterial = material.next_pass as ShaderMaterial
world_coloring_pass.set_shader_parameter("world_color_texture", world_coloring_texture)
+90 -40
View File
@@ -1,37 +1,10 @@
[gd_scene load_steps=11 format=3 uid="uid://b1nm5h3yccr16"]
[gd_scene load_steps=14 format=3 uid="uid://b1nm5h3yccr16"]
[ext_resource type="Script" path="res://entities/Player.gd" id="1_ca7jo"]
[ext_resource type="Script" path="res://scenes/World.gd" id="1_gtcjp"]
[sub_resource type="FastNoiseLite" id="FastNoiseLite_wonuc"]
noise_type = 0
frequency = 0.014
fractal_lacunarity = 3.0
[sub_resource type="NoiseTexture2D" id="NoiseTexture2D_iklfu"]
width = 32
height = 32
seamless = true
seamless_blend_skirt = 0.857
normalize = false
noise = SubResource("FastNoiseLite_wonuc")
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_b5tqf"]
albedo_color = Color(0.113725, 0.431373, 0.266667, 0.933333)
albedo_texture = SubResource("NoiseTexture2D_iklfu")
uv1_triplanar = true
texture_filter = 0
[sub_resource type="CylinderMesh" id="CylinderMesh_a3rev"]
material = SubResource("StandardMaterial3D_b5tqf")
top_radius = 20.0
bottom_radius = 20.0
height = 0.2
radial_segments = 8
[sub_resource type="CylinderShape3D" id="CylinderShape3D_ar5d4"]
height = 0.2
radius = 20.0
[ext_resource type="Texture2D" uid="uid://cek45oeqv3jvj" path="res://assets/textures/test_world_color_texture_viewport.png" id="3_bvxb7"]
[ext_resource type="Texture2D" uid="uid://bnsrnuuq28p4d" path="res://assets/textures/player_draw_mask.png" id="4_dipd5"]
[ext_resource type="Material" uid="uid://bg3dawo5kkosg" path="res://materials/GrassNoiseMaterial.tres" id="4_pseda"]
[sub_resource type="BoxMesh" id="BoxMesh_yle83"]
size = Vector3(0.24, 0.75, 0.24)
@@ -45,23 +18,30 @@ ambient_light_source = 3
ambient_light_color = Color(0.521569, 0.521569, 0.521569, 1)
ambient_light_energy = 2.64
[sub_resource type="World3D" id="World3D_s7kgt"]
[sub_resource type="BoxShape3D" id="BoxShape3D_p0rqu"]
[sub_resource type="BoxMesh" id="BoxMesh_237xr"]
[sub_resource type="BoxMesh" id="BoxMesh_bwn4a"]
material = ExtResource("4_pseda")
[sub_resource type="BoxShape3D" id="BoxShape3D_mneaf"]
size = Vector3(100, 2, 100)
[node name="World" type="Node3D"]
script = ExtResource("1_gtcjp")
[node name="Platform" type="StaticBody3D" parent="."]
[node name="MeshInstance3D" type="MeshInstance3D" parent="Platform"]
mesh = SubResource("CylinderMesh_a3rev")
[node name="CollisionShape3D" type="CollisionShape3D" parent="Platform"]
shape = SubResource("CylinderShape3D_ar5d4")
[node name="Player1" type="CharacterBody3D" parent="."]
collision_mask = 3
script = ExtResource("1_ca7jo")
color = null
move_right_action = "move_right_p1"
move_left_action = "move_left_p1"
move_down_action = "move_down_p1"
move_up_action = "move_up_p1"
dash_action = null
[node name="Geometry" type="MeshInstance3D" parent="Player1"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.472544, 0)
@@ -79,4 +59,74 @@ transform = Transform3D(-4.37114e-08, -0.528438, 0.848972, 0, 0.848972, 0.528438
shadow_enabled = true
[node name="Camera3D" type="Camera3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 0.305147, 0.952305, 0, -0.952305, 0.305147, -4.26326e-13, 4.70264, 1.09419)
transform = Transform3D(1, 0, 0, 0, 0.305147, 0.952305, 0, -0.952305, 0.305147, 0, 10, 1.966)
[node name="Sprite3D" type="Sprite3D" parent="."]
transform = Transform3D(20, 0, 0, 0, -8.74228e-07, 50, 0, -20, -2.18557e-06, 0, 0, 0)
modulate = Color(1, 1, 1, 0.32549)
[node name="WorldColoringViewport" type="SubViewport" parent="."]
own_world_3d = true
world_3d = SubResource("World3D_s7kgt")
transparent_bg = true
size = Vector2i(1001, 1001)
render_target_clear_mode = 1
render_target_update_mode = 4
[node name="TextureRect" type="TextureRect" parent="WorldColoringViewport"]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("3_bvxb7")
[node name="Player1TextureRect" type="TextureRect" parent="WorldColoringViewport"]
offset_right = 40.0
offset_bottom = 40.0
texture = ExtResource("4_dipd5")
[node name="Level" type="Node3D" parent="."]
[node name="Box" type="StaticBody3D" parent="Level"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1)
[node name="CollisionShape3D" type="CollisionShape3D" parent="Level/Box"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0)
shape = SubResource("BoxShape3D_p0rqu")
[node name="MeshInstance3D" type="MeshInstance3D" parent="Level/Box"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0)
mesh = SubResource("BoxMesh_237xr")
[node name="Platform2" type="StaticBody3D" parent="Level"]
[node name="MeshInstance3D" type="MeshInstance3D" parent="Level/Platform2"]
transform = Transform3D(101, 0, 0, 0, 2, 0, 0, 0, 101, 0, -1, 0)
mesh = SubResource("BoxMesh_bwn4a")
[node name="CollisionShape3D" type="CollisionShape3D" parent="Level/Platform2"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0)
shape = SubResource("BoxShape3D_mneaf")
[node name="BoxNorthEast" type="StaticBody3D" parent="Level"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -50, 0, -50)
[node name="CollisionShape3D" type="CollisionShape3D" parent="Level/BoxNorthEast"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0)
shape = SubResource("BoxShape3D_p0rqu")
[node name="MeshInstance3D" type="MeshInstance3D" parent="Level/BoxNorthEast"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0)
mesh = SubResource("BoxMesh_237xr")
[node name="BoxSouthWest" type="StaticBody3D" parent="Level"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 50)
[node name="CollisionShape3D" type="CollisionShape3D" parent="Level/BoxSouthWest"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0)
shape = SubResource("BoxShape3D_p0rqu")
[node name="MeshInstance3D" type="MeshInstance3D" parent="Level/BoxSouthWest"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0)
mesh = SubResource("BoxMesh_237xr")