Skip to content
This repository was archived by the owner on Oct 28, 2025. It is now read-only.

Commit a636de6

Browse files
authored
Merge pull request #20 from Netherlands3D/bugfix/missing-former-query-parameters-also-added
also previously added query params
2 parents f99de53 + 76d7c22 commit a636de6

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this package will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [1.10.2] - 14-1-2025
9+
10+
### Fixed
11+
- QueryParameters now also works with previous keys
12+
813
## [1.10.1] - 10-1-2025
914

1015
### Fixed

Runtime/Scripts/Read3DTileset.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -666,6 +666,13 @@ private string GetFullContentUri(Tile tile)
666666
contentQueryParameters.Add(key, queryParameters[key]);
667667
}
668668
}
669+
foreach (string key in contentQueryParameters.Keys)
670+
{
671+
if (!queryParameters.AllKeys.Contains(key))
672+
{
673+
queryParameters.Add(key, contentQueryParameters[key]);
674+
}
675+
}
669676

670677
uriBuilder.Query = ToQueryString(contentQueryParameters);
671678
var url = uriBuilder.ToString();

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "eu.netherlands3d.tiles3d",
33
"displayName": "Netherlands 3D - 3DTiles",
4-
"version": "1.10.1",
4+
"version": "1.10.2",
55
"unity": "2022.2",
66
"type": "library",
77
"keywords": [

0 commit comments

Comments
 (0)