瀏覽代碼

Trying to correct render order.

master
Pete Shadbolt 7 年之前
父節點
當前提交
757745f1a7
共有 2 個文件被更改,包括 3 次插入2 次删除
  1. +1
    -0
      abp/static/scripts/editor.js
  2. +2
    -2
      abp/static/scripts/materials.js

+ 1
- 0
abp/static/scripts/editor.js 查看文件

@@ -124,6 +124,7 @@ editor.setOrientation = function(orientation) {
editor.makeGrid = function() {
editor.grid = new THREE.GridHelper(10, 1);
editor.grid.setColors(0xbbbbbb, 0xeeeeee);
editor.grid.renderOrder = 1000;
editor.setOrientation(0);
gui.scene.add(editor.grid);
};


+ 2
- 2
abp/static/scripts/materials.js 查看文件

@@ -1,7 +1,7 @@
var materials = {};

var curveProperties = {
splineDensity: 10,
splineDensity: 1,
curvature: 20
};

@@ -12,7 +12,7 @@ materials.prepare = function() {
materials.edge = new THREE.LineBasicMaterial({
color: "gray",
transparent: false,
linewidth: 2
linewidth: 3
});
materials.qubit = new THREE.PointsMaterial({
size: 0.3,


Loading…
取消
儲存