mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
fix particle color
This commit is contained in:
parent
f86e9a8cd6
commit
a1ce73a85c
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
#include "baseParticleRenderer.h"
|
#include "baseParticleRenderer.h"
|
||||||
#include "transparencyAttrib.h"
|
#include "transparencyAttrib.h"
|
||||||
|
#include "colorAttrib.h"
|
||||||
#include "compassEffect.h"
|
#include "compassEffect.h"
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
@ -140,7 +141,8 @@ update_alpha_mode(ParticleRendererAlphaMode am) {
|
|||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
void BaseParticleRenderer::
|
void BaseParticleRenderer::
|
||||||
enable_alpha() {
|
enable_alpha() {
|
||||||
_render_state = RenderState::make(TransparencyAttrib::make(TransparencyAttrib::M_alpha));
|
_render_state = RenderState::make(TransparencyAttrib::make(TransparencyAttrib::M_alpha),
|
||||||
|
ColorAttrib::make_vertex());
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
@ -150,5 +152,6 @@ enable_alpha() {
|
|||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
void BaseParticleRenderer::
|
void BaseParticleRenderer::
|
||||||
disable_alpha() {
|
disable_alpha() {
|
||||||
_render_state = RenderState::make(TransparencyAttrib::make(TransparencyAttrib::M_none));
|
_render_state = RenderState::make(TransparencyAttrib::make(TransparencyAttrib::M_none),
|
||||||
|
ColorAttrib::make_vertex());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user