Join using a space instead of newline
This commit is contained in:
parent
a05cb5e6ff
commit
0367d34592
1 changed files with 2 additions and 2 deletions
|
@ -131,8 +131,8 @@ make.shaders = {
|
|||
shaderPair: function (v, f) {
|
||||
let i = random.number(v.length)
|
||||
return {
|
||||
vertex: utils.common.quote(v[i].join('\n')),
|
||||
fragment: utils.common.quote(f[i].join('\n'))
|
||||
vertex: utils.common.quote(v[i].join(' ')),
|
||||
fragment: utils.common.quote(f[i].join(' '))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue