File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file. See [ standard-version] ( https://github.com/conventional-changelog/standard-version ) for commit guidelines.
4
+
5
+ <a name =" 1.1.14-0 " ></a >
6
+ ## [ 1.1.14-0] ( https://github.com/argonjs/argon/compare/v1.1.13...v1.1.14-0 ) (2017-04-19)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * ** DeviceService:** Fixed _ updateForWebVR logic ([ 68e156b] ( https://github.com/argonjs/argon/commit/68e156b ) )
12
+ * ** DeviceService:** Fixed user orientation & subview projection matrices for webvr ([ 42ff5f4] ( https://github.com/argonjs/argon/commit/42ff5f4 ) )
13
+ * ** DeviceServiceProvider:** Removed unnecessary WebVR logic from onUpdateDeviceState ([ bb8aa70] ( https://github.com/argonjs/argon/commit/bb8aa70 ) )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @argonjs/argon" ,
3
- "version" : " 1.1.13 " ,
3
+ "version" : " 1.1.14-0 " ,
4
4
"main" : " dist/argon.core.js" ,
5
5
"browser" : " dist/argon.js" ,
6
6
"typings" : " index.d.ts" ,
230
230
"preversion" : " [[ -z $(git status --porcelain) ]]" ,
231
231
"version" : " npm run tsc && npm run build && git add -u" ,
232
232
"postversion" : " git push && git push --tags" ,
233
-
234
- "begin-release" :" [[ -z $(git status --porcelain) ]] && npm run tsc && npm run build && git add -u" ,
233
+ "begin-release" : " [[ -z $(git status --porcelain) ]] && npm run tsc && npm run build && git add -u" ,
235
234
"release:next" : " npm run begin-release && standard-version -a --prerelease && npm run finish-release && npm publish --tag next" ,
236
235
"release:latest" : " npm run begin-release && standard-version -a && npm run finish-release && npm publish" ,
237
236
"finish-release" : " git push && git push --tags"
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ export declare class DeviceService {
49
49
readonly geoHorizontalAccuracy : number | undefined ;
50
50
readonly geoVerticalAccuracy : number | undefined ;
51
51
private _getEntityPositionInReferenceFrame ;
52
+ private _getEntityOrientationInReferenceFrame ;
52
53
protected _scratchCartesian : Cartesian3 ;
53
54
protected _scratchCartesian2 : Cartesian3 ;
54
55
protected _scratchFrustum : PerspectiveFrustum ;
@@ -82,6 +83,8 @@ export declare class DeviceService {
82
83
* Defines the webvr standing space, positioned at the stage (EUS) frame by default.
83
84
*/
84
85
vrStandingSpace : Entity ;
86
+ private _defaultLeftBounds ;
87
+ private _defaultRightBounds ;
85
88
private _updateForWebVR ( ) ;
86
89
private _scratchFrameState ;
87
90
private _getSerializedEntityState ;
@@ -126,7 +129,6 @@ export declare class DeviceServiceProvider {
126
129
publishDeviceState ( ) : void ;
127
130
defaultUserHeight : number ;
128
131
readonly suggestedUserHeight : number ;
129
- private _vrFrameData ?;
130
132
protected onUpdateDeviceState ( deviceState : DeviceState ) : void ;
131
133
private _currentGeolocationOptions ?;
132
134
private _targetGeolocationOptions ;
You can’t perform that action at this time.
0 commit comments