-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add repo to migration list, see phetsims/chipper#875
- Loading branch information
Showing
5 changed files
with
94 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,37 +5,33 @@ | |
* | ||
* @author Jonathan Olson <[email protected]> | ||
*/ | ||
define( require => { | ||
'use strict'; | ||
|
||
// modules | ||
const ExploreScreen = require( 'AREA_MODEL_COMMON/screens/ExploreScreen' ); | ||
const GenericScreen = require( 'AREA_MODEL_COMMON/screens/GenericScreen' ); | ||
const Sim = require( 'JOIST/Sim' ); | ||
const SimLauncher = require( 'JOIST/SimLauncher' ); | ||
const VariablesGameScreen = require( 'AREA_MODEL_COMMON/screens/VariablesGameScreen' ); | ||
const VariablesScreen = require( 'AREA_MODEL_COMMON/screens/VariablesScreen' ); | ||
import ExploreScreen from '../../area-model-common/js/screens/ExploreScreen.js'; | ||
import GenericScreen from '../../area-model-common/js/screens/GenericScreen.js'; | ||
import VariablesGameScreen from '../../area-model-common/js/screens/VariablesGameScreen.js'; | ||
import VariablesScreen from '../../area-model-common/js/screens/VariablesScreen.js'; | ||
import Sim from '../../joist/js/Sim.js'; | ||
import SimLauncher from '../../joist/js/SimLauncher.js'; | ||
import areaModelAlgebraStrings from './area-model-algebra-strings.js'; | ||
|
||
// strings | ||
const areaModelAlgebraTitleString = require( 'string!AREA_MODEL_ALGEBRA/area-model-algebra.title' ); | ||
const areaModelAlgebraTitleString = areaModelAlgebraStrings[ 'area-model-algebra' ].title; | ||
|
||
const simOptions = { | ||
credits: { | ||
leadDesign: 'Amy Hanson, Amanda McGarry', | ||
softwareDevelopment: 'Jonathan Olson', | ||
team: 'Karina Hensberry, Susan Miller, Ariel Paul, Kathy Perkins, Oliver Nix', | ||
qualityAssurance: 'Steele Dalton, Bryce Griebenow, Ethan Johnson, Liam Mulhall, Ben Roberts, Jacob Romero, Ethan Ward, Clara Wilson, Kathryn Woessner', | ||
graphicArts: 'Mariah Hermsmeyer, Amanda McGarry, Diana L\u00f3pez Tavares' | ||
} | ||
}; | ||
const simOptions = { | ||
credits: { | ||
leadDesign: 'Amy Hanson, Amanda McGarry', | ||
softwareDevelopment: 'Jonathan Olson', | ||
team: 'Karina Hensberry, Susan Miller, Ariel Paul, Kathy Perkins, Oliver Nix', | ||
qualityAssurance: 'Steele Dalton, Bryce Griebenow, Ethan Johnson, Liam Mulhall, Ben Roberts, Jacob Romero, Ethan Ward, Clara Wilson, Kathryn Woessner', | ||
graphicArts: 'Mariah Hermsmeyer, Amanda McGarry, Diana L\u00f3pez Tavares' | ||
} | ||
}; | ||
|
||
SimLauncher.launch( function() { | ||
const sim = new Sim( areaModelAlgebraTitleString, [ | ||
new ExploreScreen(), | ||
new GenericScreen(), | ||
new VariablesScreen(), | ||
new VariablesGameScreen() | ||
], simOptions ); | ||
sim.start(); | ||
} ); | ||
} ); | ||
SimLauncher.launch( function() { | ||
const sim = new Sim( areaModelAlgebraTitleString, [ | ||
new ExploreScreen(), | ||
new GenericScreen(), | ||
new VariablesScreen(), | ||
new VariablesGameScreen() | ||
], simOptions ); | ||
sim.start(); | ||
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright 2020, University of Colorado Boulder | ||
|
||
/** | ||
* Auto-generated from modulify, DO NOT manually modify. | ||
*/ | ||
|
||
import getStringModule from '../../chipper/js/getStringModule.js'; | ||
import areaModelAlgebra from './areaModelAlgebra.js'; | ||
|
||
const areaModelAlgebraStrings = getStringModule( 'AREA_MODEL_ALGEBRA' ); | ||
|
||
areaModelAlgebra.register( 'areaModelAlgebraStrings', areaModelAlgebraStrings ); | ||
|
||
export default areaModelAlgebraStrings; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Copyright 2020, University of Colorado Boulder | ||
|
||
/** | ||
* Creates the namespace for this simulation. | ||
*/ | ||
|
||
// modules | ||
import Namespace from '../../phet-core/js/Namespace.js'; | ||
|
||
export default new Namespace( 'areaModelAlgebra' ); |