mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
lightning strikes
This commit is contained in:
parent
713496a8a0
commit
d2a815176b
2 changed files with 201 additions and 3 deletions
|
@ -47,7 +47,7 @@ var weatherZone = Entities.addEntity({
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
createWeatherBox(center);
|
createWeatherBox(center);
|
||||||
center.y += boxDimensions.y/2;
|
center.y += boxDimensions.y / 2;
|
||||||
createCloud(center);
|
createCloud(center);
|
||||||
createLightningStrike(center)
|
createLightningStrike(center)
|
||||||
|
|
||||||
|
@ -73,9 +73,9 @@ function createLightningStrike(position) {
|
||||||
normals.push(normal);
|
normals.push(normal);
|
||||||
strokeWidths.push(0.01);
|
strokeWidths.push(0.01);
|
||||||
strokeWidths.push(0.01);
|
strokeWidths.push(0.01);
|
||||||
bolt = Entities.addEntity({
|
var bolt = Entities.addEntity({
|
||||||
type: "PolyLine",
|
type: "PolyLine",
|
||||||
textures: textureURL,
|
textures: textureURL,
|
||||||
position: position,
|
position: position,
|
||||||
dimensions: {
|
dimensions: {
|
||||||
x: 10,
|
x: 10,
|
||||||
|
@ -86,6 +86,10 @@ function createLightningStrike(position) {
|
||||||
normals: normals,
|
normals: normals,
|
||||||
strokeWidths: strokeWidths
|
strokeWidths: strokeWidths
|
||||||
});
|
});
|
||||||
|
Script.setTimeout(function() {
|
||||||
|
print("UIAYUAYHUAY")
|
||||||
|
createLightningStrike(position);
|
||||||
|
}, 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
194
examples/widgets/weatherBox.js
Normal file
194
examples/widgets/weatherBox.js
Normal file
|
@ -0,0 +1,194 @@
|
||||||
|
Script.include("../libraries/utils.js");
|
||||||
|
var weatherBox, boxDimensions;
|
||||||
|
var orientation = Camera.getOrientation();
|
||||||
|
orientation = Quat.safeEulerAngles(orientation);
|
||||||
|
orientation.x = 0;
|
||||||
|
orientation = Quat.fromVec3Degrees(orientation);
|
||||||
|
var center = Vec3.sum(MyAvatar.position, Vec3.multiply(3, Quat.getFront(orientation)));
|
||||||
|
|
||||||
|
var emitters = [];
|
||||||
|
var spheres = [];
|
||||||
|
|
||||||
|
var bolt;
|
||||||
|
var raveRoomModelURL = "https://s3-us-west-1.amazonaws.com/hifi-content/eric/models/RaveRoom.fbx";
|
||||||
|
var roomDimensions = {
|
||||||
|
x: 30.58,
|
||||||
|
y: 15.29,
|
||||||
|
z: 30.58
|
||||||
|
};
|
||||||
|
|
||||||
|
var raveRoom = Entities.addEntity({
|
||||||
|
type: "Model",
|
||||||
|
name: "Rave Hut Room",
|
||||||
|
modelURL: raveRoomModelURL,
|
||||||
|
position: center,
|
||||||
|
dimensions: roomDimensions,
|
||||||
|
visible: true
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
var weatherZone = Entities.addEntity({
|
||||||
|
type: "Zone",
|
||||||
|
name: "Weather Zone",
|
||||||
|
shapeType: 'box',
|
||||||
|
keyLightIntensity: 1,
|
||||||
|
keyLightColor: {
|
||||||
|
red: 50,
|
||||||
|
green: 0,
|
||||||
|
blue: 50
|
||||||
|
},
|
||||||
|
keyLightAmbientIntensity: 1,
|
||||||
|
position: MyAvatar.position,
|
||||||
|
dimensions: {
|
||||||
|
x: 100,
|
||||||
|
y: 100,
|
||||||
|
z: 100
|
||||||
|
}
|
||||||
|
});
|
||||||
|
createWeatherBox(center);
|
||||||
|
center.y += boxDimensions.y / 2;
|
||||||
|
createCloud(center);
|
||||||
|
createLightningStrike(center)
|
||||||
|
createLightningStrike(center)
|
||||||
|
createLightningStrike(center)
|
||||||
|
createLightningStrike(center)
|
||||||
|
createLightningStrike(center)
|
||||||
|
createLightningStrike(center)
|
||||||
|
createLightningStrike(center)
|
||||||
|
createLightningStrike(center)
|
||||||
|
createLightningStrike(center)
|
||||||
|
|
||||||
|
|
||||||
|
function createLightningStrike(position) {
|
||||||
|
var normal = Vec3.subtract(position, MyAvatar.position);
|
||||||
|
normal.y = 0;
|
||||||
|
var textureURL = "file:///C:/Users/Eric/Desktop/lightning.png"
|
||||||
|
var linePoints = [];
|
||||||
|
var normals = [];
|
||||||
|
var strokeWidths = [];
|
||||||
|
var strokeWidth = 0.02
|
||||||
|
var currentPointPosition = {x: 0, y: 0, z: 0};
|
||||||
|
for (var i = 0; i < 8; i++) {
|
||||||
|
linePoints.push(currentPointPosition);
|
||||||
|
currentPointPosition = Vec3.sum(currentPointPosition, {x: randFloat(-0.07, 0.07), y: randFloat(-0.1, -0.05), z: randFloat(-0.07, 0.07)});
|
||||||
|
linePoints.push(currentPointPosition);
|
||||||
|
normals.push(normal);
|
||||||
|
normals.push(normal);
|
||||||
|
strokeWidth -= 0.002;
|
||||||
|
strokeWidths.push(strokeWidth);
|
||||||
|
strokeWidths.push(strokeWidth);
|
||||||
|
}
|
||||||
|
|
||||||
|
bolt = Entities.addEntity({
|
||||||
|
type: "PolyLine",
|
||||||
|
textures: textureURL,
|
||||||
|
position: position,
|
||||||
|
dimensions: {
|
||||||
|
x: 10,
|
||||||
|
y: 10,
|
||||||
|
z: 10
|
||||||
|
},
|
||||||
|
linePoints: linePoints,
|
||||||
|
normals: normals,
|
||||||
|
strokeWidths: strokeWidths,
|
||||||
|
lifetime: randFloat(0.01, 0.2)
|
||||||
|
});
|
||||||
|
|
||||||
|
Script.setTimeout(function() {
|
||||||
|
createLightningStrike(position)
|
||||||
|
}, randInt(500, 5000));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function createWeatherBox(position) {
|
||||||
|
var naturalDimensions = {
|
||||||
|
x: 1.11,
|
||||||
|
y: 1.3,
|
||||||
|
z: 1.11
|
||||||
|
};
|
||||||
|
boxDimensions = Vec3.multiply(naturalDimensions, 0.7);
|
||||||
|
var modelURL = "file:///C:/Users/Eric/Desktop/weatherBox.fbx?v1" + Math.random();
|
||||||
|
// var modelURL = "https://s3-us-west-1.amazonaws.com/hifi-content/eric/models/raveStick.fbx";
|
||||||
|
weatherBox = Entities.addEntity({
|
||||||
|
type: "Model",
|
||||||
|
modelURL: modelURL,
|
||||||
|
position: position,
|
||||||
|
dimensions: boxDimensions
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function createCloud(position) {
|
||||||
|
var props = {
|
||||||
|
"type": "ParticleEffect",
|
||||||
|
"position": position,
|
||||||
|
"isEmitting": true,
|
||||||
|
"maxParticles": 10000,
|
||||||
|
"lifespan": 2,
|
||||||
|
"emitRate": 1000,
|
||||||
|
"emitSpeed": 0.025,
|
||||||
|
"speedSpread": 0,
|
||||||
|
"emitDimensions": {
|
||||||
|
x: 1,
|
||||||
|
y: 1,
|
||||||
|
z: 0.1
|
||||||
|
},
|
||||||
|
"emitRadiusStart": 1,
|
||||||
|
"polarStart": 0,
|
||||||
|
"polarFinish": 1.570796012878418,
|
||||||
|
"azimuthStart": -3.1415927410125732,
|
||||||
|
"azimuthFinish": 3.1415927410125732,
|
||||||
|
"emitAcceleration": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 0
|
||||||
|
},
|
||||||
|
"particleRadius": 0.04,
|
||||||
|
"radiusSpread": 0,
|
||||||
|
"radiusStart": 0.04,
|
||||||
|
radiusFinish: 0.04,
|
||||||
|
"colorStart": {
|
||||||
|
"red": 0,
|
||||||
|
"green": 0,
|
||||||
|
"blue": 255
|
||||||
|
},
|
||||||
|
color: {
|
||||||
|
red: 100,
|
||||||
|
green: 100,
|
||||||
|
blue: 200
|
||||||
|
},
|
||||||
|
"colorFinish": {
|
||||||
|
"red": 200,
|
||||||
|
"green": 200,
|
||||||
|
"blue": 255
|
||||||
|
},
|
||||||
|
"alpha": 1,
|
||||||
|
"alphaSpread": 0,
|
||||||
|
"alphaStart": 0,
|
||||||
|
"alphaFinish": 0,
|
||||||
|
"emitterShouldTrail": true,
|
||||||
|
"textures": "https://hifi-public.s3.amazonaws.com/alan/Particles/Particle-Sprite-Smoke-1.png"
|
||||||
|
}
|
||||||
|
|
||||||
|
var oceanEmitter = Entities.addEntity(props);
|
||||||
|
emitters.push(oceanEmitter);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function cleanup() {
|
||||||
|
emitters.forEach(function(emitter) {
|
||||||
|
Entities.deleteEntity(emitter);
|
||||||
|
});
|
||||||
|
spheres.forEach(function(sphere) {
|
||||||
|
Entities.deleteEntity(sphere);
|
||||||
|
});
|
||||||
|
Entities.deleteEntity(weatherBox);
|
||||||
|
Entities.deleteEntity(weatherZone);
|
||||||
|
|
||||||
|
Entities.deleteEntity(raveRoom);
|
||||||
|
Entities.deleteEntity(bolt);
|
||||||
|
}
|
||||||
|
|
||||||
|
Script.scriptEnding.connect(cleanup);
|
Loading…
Reference in a new issue