mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 09:29:02 +02:00
added textures field to particle explorer
This commit is contained in:
parent
023fd0607d
commit
c43500f38a
2 changed files with 2 additions and 46 deletions
|
@ -1500,51 +1500,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="section-header particle-section">
|
|
||||||
<label>Particle</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="particle-section property">
|
|
||||||
<span class="label">Is Emitting</span>
|
|
||||||
<span class="value">
|
|
||||||
<input type='checkbox' id="property-particle-is-emitting">
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="particle-section property">
|
|
||||||
<div class="label">Max Particles</div>
|
|
||||||
<div class="value">
|
|
||||||
<input type='number' id="property-particle-maxparticles" min="0" max="2048" step="1">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="particle-section property">
|
|
||||||
<div class="label">Particle Life Span</div>
|
|
||||||
<div class="value">
|
|
||||||
<input type='number' id="property-particle-lifespan" min="0" step="0.1">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="particle-section property">
|
|
||||||
<div class="label">Particle Emission Rate</div>
|
|
||||||
<div class="value">
|
|
||||||
<input type='number' id="property-particle-emit-rate" min="0" step="0.5">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="particle-section property">
|
|
||||||
<div class="label">Particle Radius</div>
|
|
||||||
<div class="value">
|
|
||||||
<input class="coord" type='number' id="property-particle-radius" min="0" step="0.005">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="particle-section property">
|
|
||||||
<div class="label">Textures</div>
|
|
||||||
<div class="value">
|
|
||||||
<textarea id="property-particle-textures" value=''></textarea>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="section-header light-section">
|
<div class="section-header light-section">
|
||||||
<label>Light</label>
|
<label>Light</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -62,7 +62,8 @@ var keysToAllow = [
|
||||||
'alphaSpread',
|
'alphaSpread',
|
||||||
'alphaStart',
|
'alphaStart',
|
||||||
'alphaFinish',
|
'alphaFinish',
|
||||||
'emitterShouldTrail'
|
'emitterShouldTrail',
|
||||||
|
'textures'
|
||||||
];
|
];
|
||||||
|
|
||||||
var individualKeys = [];
|
var individualKeys = [];
|
||||||
|
|
Loading…
Reference in a new issue