diff --git a/.gitignore b/.gitignore index 5ccd9fe8..4286eb74 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ pubspec.lock *.map *.dart.js.deps out +.packages diff --git a/lib/src/renderers/web_gl_renderer.dart b/lib/src/renderers/web_gl_renderer.dart index a3fc3ab4..5a055121 100644 --- a/lib/src/renderers/web_gl_renderer.dart +++ b/lib/src/renderers/web_gl_renderer.dart @@ -20,7 +20,7 @@ class WebGLRenderer implements Renderer { Color _clearColor; num _clearAlpha; - double devicePixelRatio; + num devicePixelRatio; bool alpha, premultipliedAlpha, antialias, stencil, preserveDrawingBuffer; diff --git a/lib/three.dart b/lib/three.dart index 16711c10..13f68f61 100644 --- a/lib/three.dart +++ b/lib/three.dart @@ -2,7 +2,7 @@ library three; import 'dart:async'; import 'dart:collection'; -import 'dart:html' hide Path; +import 'dart:html'; import 'dart:typed_data'; import 'dart:web_gl' as gl; import 'dart:math' as Math; diff --git a/pubspec.yaml b/pubspec.yaml index 688304b1..c5d117f1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: three -version: 0.2.5+1 +version: 0.2.5+2 authors: - Robert Silverton - Nelson Silva