Skip to content

Commit

Permalink
moves other feeder widths up to correct y pos
Browse files Browse the repository at this point in the history
  • Loading branch information
sphawes committed Aug 4, 2023
1 parent f74125b commit 9b45a32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ window.render12 = function(x, z, rotation){
{
var part = gltf.scene;
part.scale.set(.1, .1, .1);
part.position.y = 0;
part.position.y = 1;
part.position.z = z;
part.position.x = x;
//this is to make them upright
Expand All @@ -194,7 +194,7 @@ window.render16 = function(x, z, rotation){
{
var part = gltf.scene;
part.scale.set(.1, .1, .1);
part.position.y = 0;
part.position.y = 1;
part.position.z = z;
part.position.x = x;
//this is to make them upright
Expand All @@ -215,7 +215,7 @@ window.render24 = function(x, z, rotation){
{
var part = gltf.scene;
part.scale.set(.1, .1, .1);
part.position.y = 0;
part.position.y = 1;
part.position.z = z;
part.position.x = x;
//this is to make them upright
Expand Down

0 comments on commit 9b45a32

Please sign in to comment.