Render babylon.js scene at run time
npm install real_api_bbl
- Signup free account at https://realistic3.com (You will need this for API Key Authorization)
App Key
Product Key
-
Instance ID
(Optional, default is 0) - Kindly check the details at https://docs.realistic3.com/getting-started
import * as REAL from "real_api_bbl";
import * as REAL from "real_api_bbl";
const uri = `https://${REAL.Domain}/rapi/ask_service`;
const params = {
"prodCred": {
"insID": 0,
"appKey": "ABC",
"prodKey": "XYZ"
},
"ask": "new_job",
"renderParams": {
"expFrom": "3js"
}
}
const response = await axios.post(uri, params);
const renderScene = await REAL.Scene(scene, camera);
const request = await axios.put(uploadUri, renderScene);
import * as REAL from "real_api_bbl";
const uri = `https://${REAL.Domain}/rapi/ask_service`;
const params = {
"prodCred": {
"insID": 0,
"appKey": "ABC",
"prodKey": "XYZ"
},
"ask": "submit",
"service": {
"jobID": jobID
}
}
const response = await axios.post(uri, params);
- Using SOCKET: https://docs.realistic3.com/using-socket
- Using REST API: https://docs.realistic3.com/using-rest-api-calls
const options = {
width: 1,
height: 2,
intensity: 2,
diffuse: new BABYLON.Color3(0.66, 0.56, 0.2)
}
const light = new REAL.AreaLight(scene, options);
const options = {
intensity: 2,
shadowEnabled: true,
diffuse: new BABYLON.Color3(0.66, 0.56, 0.2)
}
const light = new REAL.SunLight(scene, options);
const options = {
range: 20,
intensity: 2,
shadowEnabled: true,
diffuse: new BABYLON.Color3(0.66, 0.56, 0.2)
}
const light = new REAL.PointLight(scene, options);
const options = {
range: 20,
angle: 1.5,
intensity: 2,
shadowEnabled: true,
diffuse: new BABYLON.Color3(0.66, 0.56, 0.2)
}
const light = new REAL.SpotLight(scene, options);