mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 13:38:02 +02:00
syncing brush sphere with line color
This commit is contained in:
parent
8bc9fc2e1f
commit
362d9a2481
3 changed files with 24 additions and 1 deletions
|
@ -83,7 +83,7 @@ function MousePaint() {
|
||||||
linePosition = position;
|
linePosition = position;
|
||||||
line = Entities.addEntity({
|
line = Entities.addEntity({
|
||||||
position: position,
|
position: position,
|
||||||
type: "Line",
|
type: "Quad",
|
||||||
color: currentColor,
|
color: currentColor,
|
||||||
dimensions: {
|
dimensions: {
|
||||||
x: LINE_DIMENSIONS,
|
x: LINE_DIMENSIONS,
|
||||||
|
|
9
libraries/entities/src/QuadEntityItem.cpp
Normal file
9
libraries/entities/src/QuadEntityItem.cpp
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
//
|
||||||
|
// QuadEntityItem.cpp
|
||||||
|
// hifi
|
||||||
|
//
|
||||||
|
// Created by eric levin on 6/22/15.
|
||||||
|
//
|
||||||
|
//
|
||||||
|
|
||||||
|
#include "QuadEntityItem.h"
|
14
libraries/entities/src/QuadEntityItem.h
Normal file
14
libraries/entities/src/QuadEntityItem.h
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
//
|
||||||
|
// QuadEntityItem.h
|
||||||
|
// hifi
|
||||||
|
//
|
||||||
|
// Created by eric levin on 6/22/15.
|
||||||
|
//
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef __hifi__QuadEntityItem__
|
||||||
|
#define __hifi__QuadEntityItem__
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#endif /* defined(__hifi__QuadEntityItem__) */
|
Loading…
Reference in a new issue