mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 13:43:49 +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;
|
||||
line = Entities.addEntity({
|
||||
position: position,
|
||||
type: "Line",
|
||||
type: "Quad",
|
||||
color: currentColor,
|
||||
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