├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── debug ├── app.coffee ├── framer │ ├── framer.js │ ├── framer.js.map │ └── images │ │ ├── cursor-active.png │ │ ├── cursor-active@2x.png │ │ ├── cursor.png │ │ └── cursor@2x.png ├── images │ ├── Icon.png │ ├── background.png │ ├── particle2.png │ └── perlin-512.png ├── index.html └── models │ ├── character │ ├── Defeated.dae │ └── textures │ │ ├── Boy_Hair_diffuse.png │ │ ├── Boy_Hands_diffuse.png │ │ ├── Boy_Head_diffuse.png │ │ ├── Boy_LowerBody_diffuse.png │ │ ├── Boy_Scarf_diffuse.png │ │ ├── Boy_Shoes_diffuse.png │ │ └── Boy_UpperBody_diffuse.png │ ├── falcon │ ├── Map__10_Raytrace.tga │ ├── Map__6_Noise.tga │ ├── falcon.jpg │ ├── millenium-falcon.3DS │ ├── millenium-falcon.max │ ├── millenium-falcon.mtl │ └── millenium-falcon.obj │ ├── fighter │ ├── Body 1.png │ ├── Body 2.png │ ├── Body 3.png │ ├── Body 4.png │ ├── Body 5.png │ ├── Body 6.png │ ├── F-15C_Eagle.3ds │ ├── F-15C_Eagle.c4d │ ├── F-15C_Eagle.dae │ ├── F-15C_Eagle.fbx │ ├── F-15C_Eagle.obj │ ├── F15C.jpg │ ├── F15C.pz3 │ ├── Glass.png │ ├── Parts 1.png │ ├── Thumbs.db │ ├── intpanel.png │ ├── panel.png │ ├── panel1.png │ ├── panel2.png │ ├── pilot.png │ └── weapons.png │ ├── flamingo │ └── flamingo.json │ ├── heart │ ├── heart.mtl │ └── heart.obj │ ├── helmet │ ├── DamagedHelmet.bin │ ├── DamagedHelmet.gltf │ ├── Default_AO.jpg │ ├── Default_albedo.jpg │ ├── Default_emissive.jpg │ ├── Default_metalRoughness.jpg │ └── Default_normal.jpg │ ├── imperial │ ├── Map__16_Cellular.tga │ ├── Map__17_Cellular.tga │ ├── Map__2_Cellular.tga │ ├── imperial.mtl │ ├── imperial.obj │ └── skull.obj │ ├── samba │ └── samba.fbx │ ├── tank │ ├── 1.jpg │ ├── Krlbody.jpg │ ├── archibase.net.txt │ └── tank.3DS │ ├── test │ └── test.json │ └── train │ └── train.fbx ├── documentation ├── GettingStarted.md ├── Light.md ├── Model.md └── Scene.md ├── example.coffee ├── examples └── monster.framer │ ├── .gitignore │ ├── app.coffee │ ├── framer │ ├── .bookmark │ ├── coffee-script.js │ ├── config.json │ ├── design.vekter │ ├── framer.generated.js │ ├── framer.init.js │ ├── framer.js │ ├── framer.js.map │ ├── framer.modules.js │ ├── framer.vekter.js │ ├── images │ │ ├── cursor-active.png │ │ ├── cursor-active@2x.png │ │ ├── cursor.png │ │ ├── cursor@2x.png │ │ ├── icon-120.png │ │ ├── icon-152.png │ │ ├── icon-180.png │ │ ├── icon-192.png │ │ └── icon-76.png │ ├── style.css │ └── version │ ├── images │ └── .gitkeep │ ├── index.html │ ├── models │ ├── flamingo │ │ └── flamingo.json │ └── monster.fbx │ └── modules │ ├── form.coffee │ └── form │ ├── GA.coffee │ ├── Light.coffee │ ├── Mesh.coffee │ ├── Model.coffee │ ├── Scene.coffee │ ├── Studio.coffee │ ├── _Animation.coffee │ ├── _BaseClass.coffee │ ├── _Camera.coffee │ ├── _States.coffee │ ├── lib │ ├── ColladaLoader.js │ ├── FBXLoader.js │ ├── GLTFLoader.js │ ├── MTLLoader.js │ ├── OBJLoader.js │ ├── OrbitControls.js │ ├── inflate.min.js │ └── three.min.js │ └── loaders │ ├── Collada.coffee │ ├── FBX.coffee │ ├── GLTF.coffee │ ├── JSONObject.coffee │ └── OBJ.coffee ├── form.coffee ├── form ├── GA.coffee ├── Light.coffee ├── Mesh.coffee ├── Model.coffee ├── ParticleSystem.coffee ├── Scene.coffee ├── Studio.coffee ├── _Animation.coffee ├── _BaseClass.coffee ├── _Camera.coffee ├── _States.coffee ├── lib │ ├── ColladaLoader.js │ ├── FBXLoader.js │ ├── GLTFLoader.js │ ├── GPUParticleSystem.js │ ├── MTLLoader.js │ ├── OBJLoader.js │ ├── OrbitControls.js │ ├── TDSLoader.js │ ├── inflate.min.js │ ├── textures │ │ ├── particle2.png │ │ └── perlin-512.png │ └── three.min.js └── loaders │ ├── Collada.coffee │ ├── FBX.coffee │ ├── GLTF.coffee │ ├── JSONObject.coffee │ ├── OBJ.coffee │ └── TDS.coffee ├── marketing ├── banner.png ├── banner.psd ├── flamingo.png └── thumb.png ├── module.json ├── package.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | npm-debug.log 3 | .DS_Store -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/README.md -------------------------------------------------------------------------------- /debug/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/app.coffee -------------------------------------------------------------------------------- /debug/framer/framer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/framer/framer.js -------------------------------------------------------------------------------- /debug/framer/framer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/framer/framer.js.map -------------------------------------------------------------------------------- /debug/framer/images/cursor-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/framer/images/cursor-active.png -------------------------------------------------------------------------------- /debug/framer/images/cursor-active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/framer/images/cursor-active@2x.png -------------------------------------------------------------------------------- /debug/framer/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/framer/images/cursor.png -------------------------------------------------------------------------------- /debug/framer/images/cursor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/framer/images/cursor@2x.png -------------------------------------------------------------------------------- /debug/images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/images/Icon.png -------------------------------------------------------------------------------- /debug/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/images/background.png -------------------------------------------------------------------------------- /debug/images/particle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/images/particle2.png -------------------------------------------------------------------------------- /debug/images/perlin-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/images/perlin-512.png -------------------------------------------------------------------------------- /debug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/index.html -------------------------------------------------------------------------------- /debug/models/character/Defeated.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/character/Defeated.dae -------------------------------------------------------------------------------- /debug/models/character/textures/Boy_Hair_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/character/textures/Boy_Hair_diffuse.png -------------------------------------------------------------------------------- /debug/models/character/textures/Boy_Hands_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/character/textures/Boy_Hands_diffuse.png -------------------------------------------------------------------------------- /debug/models/character/textures/Boy_Head_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/character/textures/Boy_Head_diffuse.png -------------------------------------------------------------------------------- /debug/models/character/textures/Boy_LowerBody_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/character/textures/Boy_LowerBody_diffuse.png -------------------------------------------------------------------------------- /debug/models/character/textures/Boy_Scarf_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/character/textures/Boy_Scarf_diffuse.png -------------------------------------------------------------------------------- /debug/models/character/textures/Boy_Shoes_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/character/textures/Boy_Shoes_diffuse.png -------------------------------------------------------------------------------- /debug/models/character/textures/Boy_UpperBody_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/character/textures/Boy_UpperBody_diffuse.png -------------------------------------------------------------------------------- /debug/models/falcon/Map__10_Raytrace.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/falcon/Map__10_Raytrace.tga -------------------------------------------------------------------------------- /debug/models/falcon/Map__6_Noise.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/falcon/Map__6_Noise.tga -------------------------------------------------------------------------------- /debug/models/falcon/falcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/falcon/falcon.jpg -------------------------------------------------------------------------------- /debug/models/falcon/millenium-falcon.3DS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/falcon/millenium-falcon.3DS -------------------------------------------------------------------------------- /debug/models/falcon/millenium-falcon.max: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/falcon/millenium-falcon.max -------------------------------------------------------------------------------- /debug/models/falcon/millenium-falcon.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/falcon/millenium-falcon.mtl -------------------------------------------------------------------------------- /debug/models/falcon/millenium-falcon.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/falcon/millenium-falcon.obj -------------------------------------------------------------------------------- /debug/models/fighter/Body 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/Body 1.png -------------------------------------------------------------------------------- /debug/models/fighter/Body 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/Body 2.png -------------------------------------------------------------------------------- /debug/models/fighter/Body 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/Body 3.png -------------------------------------------------------------------------------- /debug/models/fighter/Body 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/Body 4.png -------------------------------------------------------------------------------- /debug/models/fighter/Body 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/Body 5.png -------------------------------------------------------------------------------- /debug/models/fighter/Body 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/Body 6.png -------------------------------------------------------------------------------- /debug/models/fighter/F-15C_Eagle.3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/F-15C_Eagle.3ds -------------------------------------------------------------------------------- /debug/models/fighter/F-15C_Eagle.c4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/F-15C_Eagle.c4d -------------------------------------------------------------------------------- /debug/models/fighter/F-15C_Eagle.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/F-15C_Eagle.dae -------------------------------------------------------------------------------- /debug/models/fighter/F-15C_Eagle.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/F-15C_Eagle.fbx -------------------------------------------------------------------------------- /debug/models/fighter/F-15C_Eagle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/F-15C_Eagle.obj -------------------------------------------------------------------------------- /debug/models/fighter/F15C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/F15C.jpg -------------------------------------------------------------------------------- /debug/models/fighter/F15C.pz3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/F15C.pz3 -------------------------------------------------------------------------------- /debug/models/fighter/Glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/Glass.png -------------------------------------------------------------------------------- /debug/models/fighter/Parts 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/Parts 1.png -------------------------------------------------------------------------------- /debug/models/fighter/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/Thumbs.db -------------------------------------------------------------------------------- /debug/models/fighter/intpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/intpanel.png -------------------------------------------------------------------------------- /debug/models/fighter/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/panel.png -------------------------------------------------------------------------------- /debug/models/fighter/panel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/panel1.png -------------------------------------------------------------------------------- /debug/models/fighter/panel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/panel2.png -------------------------------------------------------------------------------- /debug/models/fighter/pilot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/pilot.png -------------------------------------------------------------------------------- /debug/models/fighter/weapons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/fighter/weapons.png -------------------------------------------------------------------------------- /debug/models/flamingo/flamingo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/flamingo/flamingo.json -------------------------------------------------------------------------------- /debug/models/heart/heart.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/heart/heart.mtl -------------------------------------------------------------------------------- /debug/models/heart/heart.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/heart/heart.obj -------------------------------------------------------------------------------- /debug/models/helmet/DamagedHelmet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/helmet/DamagedHelmet.bin -------------------------------------------------------------------------------- /debug/models/helmet/DamagedHelmet.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/helmet/DamagedHelmet.gltf -------------------------------------------------------------------------------- /debug/models/helmet/Default_AO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/helmet/Default_AO.jpg -------------------------------------------------------------------------------- /debug/models/helmet/Default_albedo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/helmet/Default_albedo.jpg -------------------------------------------------------------------------------- /debug/models/helmet/Default_emissive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/helmet/Default_emissive.jpg -------------------------------------------------------------------------------- /debug/models/helmet/Default_metalRoughness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/helmet/Default_metalRoughness.jpg -------------------------------------------------------------------------------- /debug/models/helmet/Default_normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/helmet/Default_normal.jpg -------------------------------------------------------------------------------- /debug/models/imperial/Map__16_Cellular.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/imperial/Map__16_Cellular.tga -------------------------------------------------------------------------------- /debug/models/imperial/Map__17_Cellular.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/imperial/Map__17_Cellular.tga -------------------------------------------------------------------------------- /debug/models/imperial/Map__2_Cellular.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/imperial/Map__2_Cellular.tga -------------------------------------------------------------------------------- /debug/models/imperial/imperial.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/imperial/imperial.mtl -------------------------------------------------------------------------------- /debug/models/imperial/imperial.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/imperial/imperial.obj -------------------------------------------------------------------------------- /debug/models/imperial/skull.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/imperial/skull.obj -------------------------------------------------------------------------------- /debug/models/samba/samba.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/samba/samba.fbx -------------------------------------------------------------------------------- /debug/models/tank/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/tank/1.jpg -------------------------------------------------------------------------------- /debug/models/tank/Krlbody.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/tank/Krlbody.jpg -------------------------------------------------------------------------------- /debug/models/tank/archibase.net.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/tank/archibase.net.txt -------------------------------------------------------------------------------- /debug/models/tank/tank.3DS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/tank/tank.3DS -------------------------------------------------------------------------------- /debug/models/test/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/test/test.json -------------------------------------------------------------------------------- /debug/models/train/train.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/debug/models/train/train.fbx -------------------------------------------------------------------------------- /documentation/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/documentation/GettingStarted.md -------------------------------------------------------------------------------- /documentation/Light.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/documentation/Light.md -------------------------------------------------------------------------------- /documentation/Model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/documentation/Model.md -------------------------------------------------------------------------------- /documentation/Scene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/documentation/Scene.md -------------------------------------------------------------------------------- /example.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/example.coffee -------------------------------------------------------------------------------- /examples/monster.framer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/.gitignore -------------------------------------------------------------------------------- /examples/monster.framer/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/app.coffee -------------------------------------------------------------------------------- /examples/monster.framer/framer/.bookmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/.bookmark -------------------------------------------------------------------------------- /examples/monster.framer/framer/coffee-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/coffee-script.js -------------------------------------------------------------------------------- /examples/monster.framer/framer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/config.json -------------------------------------------------------------------------------- /examples/monster.framer/framer/design.vekter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/design.vekter -------------------------------------------------------------------------------- /examples/monster.framer/framer/framer.generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/framer.generated.js -------------------------------------------------------------------------------- /examples/monster.framer/framer/framer.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/framer.init.js -------------------------------------------------------------------------------- /examples/monster.framer/framer/framer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/framer.js -------------------------------------------------------------------------------- /examples/monster.framer/framer/framer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/framer.js.map -------------------------------------------------------------------------------- /examples/monster.framer/framer/framer.modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/framer.modules.js -------------------------------------------------------------------------------- /examples/monster.framer/framer/framer.vekter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/framer.vekter.js -------------------------------------------------------------------------------- /examples/monster.framer/framer/images/cursor-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/images/cursor-active.png -------------------------------------------------------------------------------- /examples/monster.framer/framer/images/cursor-active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/images/cursor-active@2x.png -------------------------------------------------------------------------------- /examples/monster.framer/framer/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/images/cursor.png -------------------------------------------------------------------------------- /examples/monster.framer/framer/images/cursor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/images/cursor@2x.png -------------------------------------------------------------------------------- /examples/monster.framer/framer/images/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/images/icon-120.png -------------------------------------------------------------------------------- /examples/monster.framer/framer/images/icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/images/icon-152.png -------------------------------------------------------------------------------- /examples/monster.framer/framer/images/icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/images/icon-180.png -------------------------------------------------------------------------------- /examples/monster.framer/framer/images/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/images/icon-192.png -------------------------------------------------------------------------------- /examples/monster.framer/framer/images/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/images/icon-76.png -------------------------------------------------------------------------------- /examples/monster.framer/framer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/framer/style.css -------------------------------------------------------------------------------- /examples/monster.framer/framer/version: -------------------------------------------------------------------------------- 1 | 13 -------------------------------------------------------------------------------- /examples/monster.framer/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/monster.framer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/index.html -------------------------------------------------------------------------------- /examples/monster.framer/models/flamingo/flamingo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/models/flamingo/flamingo.json -------------------------------------------------------------------------------- /examples/monster.framer/models/monster.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/models/monster.fbx -------------------------------------------------------------------------------- /examples/monster.framer/modules/form.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/GA.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/GA.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/Light.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/Light.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/Mesh.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/Mesh.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/Model.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/Model.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/Scene.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/Scene.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/Studio.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/Studio.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/_Animation.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/_Animation.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/_BaseClass.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/_BaseClass.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/_Camera.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/_Camera.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/_States.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/_States.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/lib/ColladaLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/lib/ColladaLoader.js -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/lib/FBXLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/lib/FBXLoader.js -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/lib/GLTFLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/lib/GLTFLoader.js -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/lib/MTLLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/lib/MTLLoader.js -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/lib/OBJLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/lib/OBJLoader.js -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/lib/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/lib/OrbitControls.js -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/lib/inflate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/lib/inflate.min.js -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/lib/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/lib/three.min.js -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/loaders/Collada.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/loaders/Collada.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/loaders/FBX.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/loaders/FBX.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/loaders/GLTF.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/loaders/GLTF.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/loaders/JSONObject.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/loaders/JSONObject.coffee -------------------------------------------------------------------------------- /examples/monster.framer/modules/form/loaders/OBJ.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/examples/monster.framer/modules/form/loaders/OBJ.coffee -------------------------------------------------------------------------------- /form.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form.coffee -------------------------------------------------------------------------------- /form/GA.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/GA.coffee -------------------------------------------------------------------------------- /form/Light.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/Light.coffee -------------------------------------------------------------------------------- /form/Mesh.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/Mesh.coffee -------------------------------------------------------------------------------- /form/Model.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/Model.coffee -------------------------------------------------------------------------------- /form/ParticleSystem.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/ParticleSystem.coffee -------------------------------------------------------------------------------- /form/Scene.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/Scene.coffee -------------------------------------------------------------------------------- /form/Studio.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/Studio.coffee -------------------------------------------------------------------------------- /form/_Animation.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/_Animation.coffee -------------------------------------------------------------------------------- /form/_BaseClass.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/_BaseClass.coffee -------------------------------------------------------------------------------- /form/_Camera.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/_Camera.coffee -------------------------------------------------------------------------------- /form/_States.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/_States.coffee -------------------------------------------------------------------------------- /form/lib/ColladaLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/ColladaLoader.js -------------------------------------------------------------------------------- /form/lib/FBXLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/FBXLoader.js -------------------------------------------------------------------------------- /form/lib/GLTFLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/GLTFLoader.js -------------------------------------------------------------------------------- /form/lib/GPUParticleSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/GPUParticleSystem.js -------------------------------------------------------------------------------- /form/lib/MTLLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/MTLLoader.js -------------------------------------------------------------------------------- /form/lib/OBJLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/OBJLoader.js -------------------------------------------------------------------------------- /form/lib/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/OrbitControls.js -------------------------------------------------------------------------------- /form/lib/TDSLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/TDSLoader.js -------------------------------------------------------------------------------- /form/lib/inflate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/inflate.min.js -------------------------------------------------------------------------------- /form/lib/textures/particle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/textures/particle2.png -------------------------------------------------------------------------------- /form/lib/textures/perlin-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/textures/perlin-512.png -------------------------------------------------------------------------------- /form/lib/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/lib/three.min.js -------------------------------------------------------------------------------- /form/loaders/Collada.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/loaders/Collada.coffee -------------------------------------------------------------------------------- /form/loaders/FBX.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/loaders/FBX.coffee -------------------------------------------------------------------------------- /form/loaders/GLTF.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/loaders/GLTF.coffee -------------------------------------------------------------------------------- /form/loaders/JSONObject.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/loaders/JSONObject.coffee -------------------------------------------------------------------------------- /form/loaders/OBJ.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/loaders/OBJ.coffee -------------------------------------------------------------------------------- /form/loaders/TDS.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/form/loaders/TDS.coffee -------------------------------------------------------------------------------- /marketing/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/marketing/banner.png -------------------------------------------------------------------------------- /marketing/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/marketing/banner.psd -------------------------------------------------------------------------------- /marketing/flamingo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/marketing/flamingo.png -------------------------------------------------------------------------------- /marketing/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/marketing/thumb.png -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/module.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-form/HEAD/webpack.config.js --------------------------------------------------------------------------------