mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-02-12 16:53:07 +00:00
hide 0 index
This commit is contained in:
parent
ceeab25c87
commit
cf32c8812a
|
@ -23,19 +23,26 @@ func _draw() -> void:
|
||||||
if zoom_percentage < Global.pixel_grid_show_at_zoom:
|
if zoom_percentage < Global.pixel_grid_show_at_zoom:
|
||||||
return
|
return
|
||||||
var project = ExtensionsApi.project.current_project
|
var project = ExtensionsApi.project.current_project
|
||||||
var size: Vector2i = project.size
|
|
||||||
var cel: BaseCel = project.frames[project.current_frame].cels[project.current_layer]
|
var cel: BaseCel = project.frames[project.current_frame].cels[project.current_layer]
|
||||||
if not cel is PixelCel:
|
if not cel is PixelCel:
|
||||||
return
|
return
|
||||||
var index_image: Image = cel.image.indices_image
|
var index_image: Image = cel.image.indices_image
|
||||||
if index_image.get_size() != size or not cel.image.is_indexed:
|
if index_image.get_size() != project.size or not cel.image.is_indexed:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
var used_rect: Rect2i = cel.image.get_used_rect()
|
||||||
|
if used_rect.size != Vector2i.ZERO:
|
||||||
|
# use smaller image for optimization
|
||||||
|
index_image = index_image.get_region(used_rect)
|
||||||
|
|
||||||
var font: Font = ExtensionsApi.theme.get_theme().default_font
|
var font: Font = ExtensionsApi.theme.get_theme().default_font
|
||||||
draw_set_transform(position, rotation, Vector2(0.05, 0.05))
|
var offset = position + Vector2(used_rect.position)
|
||||||
for x in range(size.x):
|
draw_set_transform(offset, rotation, Vector2(0.05, 0.05))
|
||||||
for y in range(size.y):
|
for x in range(index_image.get_size().x):
|
||||||
|
for y in range(index_image.get_size().y):
|
||||||
var index := index_image.get_pixel(x, y).r8
|
var index := index_image.get_pixel(x, y).r8
|
||||||
|
if index == 0:
|
||||||
|
continue
|
||||||
draw_string(
|
draw_string(
|
||||||
font,
|
font,
|
||||||
Vector2(x, y) * 20 + Vector2.DOWN * 16,
|
Vector2(x, y) * 20 + Vector2.DOWN * 16,
|
||||||
|
|
Loading…
Reference in a new issue