Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/misc_exporter_collada.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
cameraControls.addEventListener( 'change', render );

// TEXTURE MAP
var textureMap = new THREE.TextureLoader().load( 'textures/UV_Grid_Sm.jpg' );
var textureMap = new THREE.TextureLoader().load( 'textures/uv_grid_opengl.jpg' );
textureMap.wrapS = textureMap.wrapT = THREE.RepeatWrapping;
textureMap.anisotropy = 16;

Expand Down
2 changes: 1 addition & 1 deletion examples/misc_exporter_gltf.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
// Simple geometry with basic material
// ---------------------------------------------------------------------
// Icosahedron
var mapGrid = new THREE.TextureLoader().load( 'textures/UV_Grid_Sm.jpg' );
var mapGrid = new THREE.TextureLoader().load( 'textures/uv_grid_opengl.jpg' );
mapGrid.wrapS = mapGrid.wrapT = THREE.RepeatWrapping;
var material = new THREE.MeshBasicMaterial( {
color: 0xffffff,
Expand Down
Binary file removed examples/textures/UV_Grid_Sm.jpg
Binary file not shown.
1 change: 0 additions & 1 deletion examples/textures/UV_Grid_Sm.txt

This file was deleted.

Binary file added examples/textures/uv_grid_directx.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added examples/textures/uv_grid_opengl.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion examples/webgl_geometries.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
camera.add( pointLight );
scene.add( camera );

var map = new THREE.TextureLoader().load( 'textures/UV_Grid_Sm.jpg' );
var map = new THREE.TextureLoader().load( 'textures/uv_grid_opengl.jpg' );
map.wrapS = map.wrapT = THREE.RepeatWrapping;
map.anisotropy = 16;

Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_geometries_parametric.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

//

var map = new THREE.TextureLoader().load( 'textures/UV_Grid_Sm.jpg' );
var map = new THREE.TextureLoader().load( 'textures/uv_grid_opengl.jpg' );
map.wrapS = map.wrapT = THREE.RepeatWrapping;
map.anisotropy = 16;

Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_geometry_nurbs.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
var knots2 = [ 0, 0, 0, 0, 1, 1, 1, 1 ];
var nurbsSurface = new NURBSSurface( degree1, degree2, knots1, knots2, nsControlPoints );

var map = new THREE.TextureLoader().load( 'textures/UV_Grid_Sm.jpg' );
var map = new THREE.TextureLoader().load( 'textures/uv_grid_opengl.jpg' );
map.wrapS = map.wrapT = THREE.RepeatWrapping;
map.anisotropy = 16;

Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_geometry_shapes.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
scene.add( group );

var loader = new THREE.TextureLoader();
var texture = loader.load( "textures/UV_Grid_Sm.jpg" );
var texture = loader.load( "textures/uv_grid_opengl.jpg" );

// it's necessary to apply these settings in order to correctly display the texture on a shape geometry

Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_geometry_teapot.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
cameraControls.addEventListener( 'change', render );

// TEXTURE MAP
var textureMap = new THREE.TextureLoader().load( 'textures/UV_Grid_Sm.jpg' );
var textureMap = new THREE.TextureLoader().load( 'textures/uv_grid_opengl.jpg' );
textureMap.wrapS = textureMap.wrapT = THREE.RepeatWrapping;
textureMap.anisotropy = 16;

Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_loader_ctm.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@

loader.load( "models/ctm/ben.ctm", function ( geometry ) {

var material = new THREE.MeshLambertMaterial( { color: 0xffaa00, map: textureLoader.load( "textures/UV_Grid_Sm.jpg" ), envMap: reflectionCube, combine: THREE.MixOperation, reflectivity: 0.3 } );
var material = new THREE.MeshLambertMaterial( { color: 0xffaa00, map: textureLoader.load( "textures/uv_grid_opengl.jpg" ), envMap: reflectionCube, combine: THREE.MixOperation, reflectivity: 0.3 } );
callbackModel( geometry, 450, material, 0, - 200, 0, 0, 0 );
checkTime();

Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_loader_obj.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@

var textureLoader = new THREE.TextureLoader( manager );

var texture = textureLoader.load( 'textures/UV_Grid_Sm.jpg' );
var texture = textureLoader.load( 'textures/uv_grid_opengl.jpg' );

// model

Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_marchingcubes.html
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
var hatchingMaterial = createShaderMaterial( ToonShaderHatching, light, ambientLight );
var dottedMaterial = createShaderMaterial( ToonShaderDotted, light, ambientLight );

var texture = new THREE.TextureLoader().load( "textures/UV_Grid_Sm.jpg" );
var texture = new THREE.TextureLoader().load( "textures/uv_grid_opengl.jpg" );
texture.wrapS = THREE.RepeatWrapping;
texture.wrapT = THREE.RepeatWrapping;

Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_materials_blending.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
{ name: 'Multiply', constant: THREE.MultiplyBlending }
];

var map0 = textureLoader.load( 'textures/UV_Grid_Sm.jpg' );
var map0 = textureLoader.load( 'textures/uv_grid_opengl.jpg' );
var map1 = textureLoader.load( 'textures/sprite0.jpg' );
var map2 = textureLoader.load( 'textures/sprite0.png' );
var map3 = textureLoader.load( 'textures/lensflare/lensflare0.png' );
Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_materials_texture_rotation.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

var geometry = new THREE.BoxBufferGeometry( 10, 10, 10 );

new THREE.TextureLoader().load( 'textures/UV_Grid_Sm.jpg', function ( texture ) {
new THREE.TextureLoader().load( 'textures/uv_grid_opengl.jpg', function ( texture ) {

texture.wrapS = texture.wrapT = THREE.RepeatWrapping;
texture.anisotropy = renderer.capabilities.getMaxAnisotropy();
Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_raycast_texture.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@

}, false );
this._background.crossOrigin = '';
this._background.src = "textures/UV_Grid_Sm.jpg";
this._background.src = "textures/uv_grid_opengl.jpg";

this._draw();

Expand Down