mirror of
https://github.com/Relintai/material-maker.git
synced 2024-12-27 23:17:14 +01:00
11 lines
262 B
GDScript
11 lines
262 B
GDScript
extends Control
|
|
|
|
func update_histogram() -> void:
|
|
pass
|
|
|
|
func get_image_texture() -> ImageTexture:
|
|
return $ViewportImage/ColorRect.material.get_shader_param("tex")
|
|
|
|
func get_histogram_texture() -> ImageTexture:
|
|
return $Control.material.get_shader_param("tex")
|