Skip to content

Commit

Permalink
DemoScreenView => Demo2DScreenView
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanolson committed Sep 12, 2019
1 parent 3b6964a commit d399027
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions js/view/IntroScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ define( require => {

// modules
const buoyancy = require( 'BUOYANCY/buoyancy' );
const DemoScreenView = require( 'DENSITY_BUOYANCY_COMMON/common/view/DemoScreenView' );
const Demo2DScreenView = require( 'DENSITY_BUOYANCY_COMMON/common/view/Demo2DScreenView' );
const DensityBuoyancyCommonColorProfile = require( 'DENSITY_BUOYANCY_COMMON/common/view/DensityBuoyancyCommonColorProfile' );
const DensityBuoyancyModel = require( 'DENSITY_BUOYANCY_COMMON/common/model/DensityBuoyancyModel' );
const Screen = require( 'JOIST/Screen' );
Expand All @@ -25,7 +25,7 @@ define( require => {
constructor( tandem ) {
super(
() => new DensityBuoyancyModel( tandem.createTandem( 'model' ) ),
model => new DemoScreenView( model, tandem.createTandem( 'view' ) ),
model => new Demo2DScreenView( model, tandem.createTandem( 'view' ) ),
{
name: screenIntroString,
backgroundColorProperty: DensityBuoyancyCommonColorProfile.skyBottomProperty,
Expand Down
4 changes: 2 additions & 2 deletions js/view/PlaygroundScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ define( require => {

// modules
const buoyancy = require( 'BUOYANCY/buoyancy' );
const DemoScreenView = require( 'DENSITY_BUOYANCY_COMMON/common/view/DemoScreenView' );
const Demo2DScreenView = require( 'DENSITY_BUOYANCY_COMMON/common/view/Demo2DScreenView' );
const DensityBuoyancyCommonColorProfile = require( 'DENSITY_BUOYANCY_COMMON/common/view/DensityBuoyancyCommonColorProfile' );
const DensityBuoyancyModel = require( 'DENSITY_BUOYANCY_COMMON/common/model/DensityBuoyancyModel' );
const Screen = require( 'JOIST/Screen' );
Expand All @@ -25,7 +25,7 @@ define( require => {
constructor( tandem ) {
super(
() => new DensityBuoyancyModel( tandem.createTandem( 'model' ) ),
model => new DemoScreenView( model, tandem.createTandem( 'view' ) ),
model => new Demo2DScreenView( model, tandem.createTandem( 'view' ) ),
{
name: screenPlaygroundString,
backgroundColorProperty: DensityBuoyancyCommonColorProfile.skyBottomProperty,
Expand Down
4 changes: 2 additions & 2 deletions js/view/ShapesScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ define( require => {

// modules
const buoyancy = require( 'BUOYANCY/buoyancy' );
const DemoScreenView = require( 'DENSITY_BUOYANCY_COMMON/common/view/DemoScreenView' );
const Demo2DScreenView = require( 'DENSITY_BUOYANCY_COMMON/common/view/Demo2DScreenView' );
const DensityBuoyancyCommonColorProfile = require( 'DENSITY_BUOYANCY_COMMON/common/view/DensityBuoyancyCommonColorProfile' );
const DensityBuoyancyModel = require( 'DENSITY_BUOYANCY_COMMON/common/model/DensityBuoyancyModel' );
const Screen = require( 'JOIST/Screen' );
Expand All @@ -25,7 +25,7 @@ define( require => {
constructor( tandem ) {
super(
() => new DensityBuoyancyModel( tandem.createTandem( 'model' ) ),
model => new DemoScreenView( model, tandem.createTandem( 'view' ) ),
model => new Demo2DScreenView( model, tandem.createTandem( 'view' ) ),
{
name: screenShapesString,
backgroundColorProperty: DensityBuoyancyCommonColorProfile.skyBottomProperty,
Expand Down
4 changes: 2 additions & 2 deletions js/view/SubmarineScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ define( require => {

// modules
const buoyancy = require( 'BUOYANCY/buoyancy' );
const DemoScreenView = require( 'DENSITY_BUOYANCY_COMMON/common/view/DemoScreenView' );
const Demo2DScreenView = require( 'DENSITY_BUOYANCY_COMMON/common/view/Demo2DScreenView' );
const DensityBuoyancyCommonColorProfile = require( 'DENSITY_BUOYANCY_COMMON/common/view/DensityBuoyancyCommonColorProfile' );
const DensityBuoyancyModel = require( 'DENSITY_BUOYANCY_COMMON/common/model/DensityBuoyancyModel' );
const Screen = require( 'JOIST/Screen' );
Expand All @@ -25,7 +25,7 @@ define( require => {
constructor( tandem ) {
super(
() => new DensityBuoyancyModel( tandem.createTandem( 'model' ) ),
model => new DemoScreenView( model, tandem.createTandem( 'view' ) ),
model => new Demo2DScreenView( model, tandem.createTandem( 'view' ) ),
{
name: screenSubmarineString,
backgroundColorProperty: DensityBuoyancyCommonColorProfile.skyBottomProperty,
Expand Down

0 comments on commit d399027

Please sign in to comment.