Skip to content

Commit 24de553

Browse files
author
Miguel Tomas
committed
Merge branch 'develop'
2 parents 62277ec + 8307a01 commit 24de553

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

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

7+
## [0.1.2] - 2020-01-09
8+
9+
- Fixed compile errors
10+
711
## [0.1.1] - 2020-01-09
812

913
- Fixed the state of a the UiPresenter when loaded. Now the UiPresenters are always disabled when loaded

Runtime/UiService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ public async Task<UiPresenter> LoadUiAsync(Type type)
334334
AddUi(config.Layer, uiPresenter, config.UiType);
335335
Addressables.Release(operation);
336336

337-
uiPresenter.SetActive(false);
337+
uiPresenter.gameObject.SetActive(false);
338338

339339
return uiPresenter;
340340
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.gamelovers.uiservice",
33
"displayName": "UiService",
4-
"version": "0.1.1",
4+
"version": "0.1.2",
55
"unity": "2019.3",
66
"description": "This package provides a service to help manage an Unity's, game UI.\nIt allows to open, close, load, unload and request any Ui Configured in the game.\nThe package provides a Ui Set that allows to group a set of Ui Presenters to help load, open and close multiple Uis at the same time.\n\nTo help configure the game's UI you need to create a UiConfigs Scriptable object by:\n- Right Click on the Project View > Create > ScriptableObjects > Configs > UiConfigs",
77
"dependencies": {

0 commit comments

Comments
 (0)