@babylonjs/inspector 4.2.0-rc.6 → 4.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -97,9 +97,9 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
97
97
|
/******/ ({
|
98
98
|
|
99
99
|
/***/ "../../../../node_modules/@fortawesome/fontawesome-svg-core/index.es.js":
|
100
|
-
|
101
|
-
!***
|
102
|
-
|
100
|
+
/*!****************************************************************************************!*\
|
101
|
+
!*** E:/Babylon/Babylon.js/node_modules/@fortawesome/fontawesome-svg-core/index.es.js ***!
|
102
|
+
\****************************************************************************************/
|
103
103
|
/*! exports provided: icon, noAuto, config, toHtml, layer, text, counter, library, dom, parse, findIconDefinition */
|
104
104
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
105
105
|
|
@@ -117,7 +117,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
117
117
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "parse", function() { return parse; });
|
118
118
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "findIconDefinition", function() { return findIconDefinition; });
|
119
119
|
/*!
|
120
|
-
* Font Awesome Free 5.15.
|
120
|
+
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
|
121
121
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
122
122
|
*/
|
123
123
|
function _typeof(obj) {
|
@@ -1214,7 +1214,7 @@ var p = config.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMA
|
|
1214
1214
|
mark: noop$1,
|
1215
1215
|
measure: noop$1
|
1216
1216
|
};
|
1217
|
-
var preamble = "FA \"5.15.
|
1217
|
+
var preamble = "FA \"5.15.3\"";
|
1218
1218
|
|
1219
1219
|
var begin = function begin(name) {
|
1220
1220
|
p.mark("".concat(preamble, " ").concat(name, " begins"));
|
@@ -1291,35 +1291,6 @@ function toHex(unicode) {
|
|
1291
1291
|
|
1292
1292
|
return result;
|
1293
1293
|
}
|
1294
|
-
function codePointAt(string, index) {
|
1295
|
-
/*! https://mths.be/codepointat v0.2.0 by @mathias */
|
1296
|
-
var size = string.length;
|
1297
|
-
var first = string.charCodeAt(index);
|
1298
|
-
var second;
|
1299
|
-
|
1300
|
-
if (first >= 0xD800 && first <= 0xDBFF && size > index + 1) {
|
1301
|
-
second = string.charCodeAt(index + 1);
|
1302
|
-
|
1303
|
-
if (second >= 0xDC00 && second <= 0xDFFF) {
|
1304
|
-
return (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000;
|
1305
|
-
}
|
1306
|
-
}
|
1307
|
-
|
1308
|
-
return first;
|
1309
|
-
}
|
1310
|
-
/**
|
1311
|
-
* Used to check that the character is between the E000..F8FF private unicode
|
1312
|
-
* range
|
1313
|
-
*/
|
1314
|
-
|
1315
|
-
function isPrivateUnicode(iconName) {
|
1316
|
-
if (iconName.length !== 1) {
|
1317
|
-
return false;
|
1318
|
-
} else {
|
1319
|
-
var cp = codePointAt(iconName, 0);
|
1320
|
-
return cp >= 57344 && cp <= 63743;
|
1321
|
-
}
|
1322
|
-
}
|
1323
1294
|
|
1324
1295
|
function defineIcons(prefix, icons) {
|
1325
1296
|
var params = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
@@ -1898,27 +1869,6 @@ var missing = {
|
|
1898
1869
|
};
|
1899
1870
|
|
1900
1871
|
var styles$2 = namespace.styles;
|
1901
|
-
function resolveCustomIconVersion() {
|
1902
|
-
var kitConfig = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
1903
|
-
var iconName = arguments.length > 1 ? arguments[1] : undefined;
|
1904
|
-
|
1905
|
-
if (iconName && isPrivateUnicode(iconName)) {
|
1906
|
-
if (kitConfig && kitConfig.iconUploads) {
|
1907
|
-
var iconUploads = kitConfig.iconUploads;
|
1908
|
-
var descriptiveIconName = Object.keys(iconUploads).find(function (key) {
|
1909
|
-
return iconUploads[key] && iconUploads[key].u && iconUploads[key].u === toHex(iconName);
|
1910
|
-
});
|
1911
|
-
|
1912
|
-
if (descriptiveIconName) {
|
1913
|
-
return iconUploads[descriptiveIconName].v;
|
1914
|
-
}
|
1915
|
-
}
|
1916
|
-
} else {
|
1917
|
-
if (kitConfig && kitConfig.iconUploads && kitConfig.iconUploads[iconName] && kitConfig.iconUploads[iconName].v) {
|
1918
|
-
return kitConfig.iconUploads[iconName].v;
|
1919
|
-
}
|
1920
|
-
}
|
1921
|
-
}
|
1922
1872
|
function asFoundIcon(icon) {
|
1923
1873
|
var width = icon[0];
|
1924
1874
|
var height = icon[1];
|
@@ -1981,12 +1931,6 @@ function findIcon(iconName, prefix) {
|
|
1981
1931
|
var icon = styles$2[prefix][iconName];
|
1982
1932
|
return resolve(asFoundIcon(icon));
|
1983
1933
|
}
|
1984
|
-
var kitToken = null;
|
1985
|
-
var iconVersion = resolveCustomIconVersion(WINDOW.FontAwesomeKitConfig, iconName);
|
1986
|
-
|
1987
|
-
if (WINDOW.FontAwesomeKitConfig && WINDOW.FontAwesomeKitConfig.token) {
|
1988
|
-
kitToken = WINDOW.FontAwesomeKitConfig.token;
|
1989
|
-
}
|
1990
1934
|
|
1991
1935
|
if (iconName && prefix && !config.showMissingIcons) {
|
1992
1936
|
reject(new MissingIcon("Icon is missing for prefix ".concat(prefix, " with icon name ").concat(iconName)));
|
@@ -2613,9 +2557,9 @@ var autoReplace = function autoReplace() {
|
|
2613
2557
|
/***/ }),
|
2614
2558
|
|
2615
2559
|
/***/ "../../../../node_modules/@fortawesome/free-regular-svg-icons/index.es.js":
|
2616
|
-
|
2617
|
-
!***
|
2618
|
-
|
2560
|
+
/*!******************************************************************************************!*\
|
2561
|
+
!*** E:/Babylon/Babylon.js/node_modules/@fortawesome/free-regular-svg-icons/index.es.js ***!
|
2562
|
+
\******************************************************************************************/
|
2619
2563
|
/*! exports provided: far, prefix, faAddressBook, faAddressCard, faAngry, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faBell, faBellSlash, faBookmark, faBuilding, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faChartBar, faCheckCircle, faCheckSquare, faCircle, faClipboard, faClock, faClone, faClosedCaptioning, faComment, faCommentAlt, faCommentDots, faComments, faCompass, faCopy, faCopyright, faCreditCard, faDizzy, faDotCircle, faEdit, faEnvelope, faEnvelopeOpen, faEye, faEyeSlash, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileExcel, faFileImage, faFilePdf, faFilePowerpoint, faFileVideo, faFileWord, faFlag, faFlushed, faFolder, faFolderOpen, faFontAwesomeLogoFull, faFrown, faFrownOpen, faFutbol, faGem, faGrimace, faGrin, faGrinAlt, faGrinBeam, faGrinBeamSweat, faGrinHearts, faGrinSquint, faGrinSquintTears, faGrinStars, faGrinTears, faGrinTongue, faGrinTongueSquint, faGrinTongueWink, faGrinWink, faHandLizard, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSpock, faHandshake, faHdd, faHeart, faHospital, faHourglass, faIdBadge, faIdCard, faImage, faImages, faKeyboard, faKiss, faKissBeam, faKissWinkHeart, faLaugh, faLaughBeam, faLaughSquint, faLaughWink, faLemon, faLifeRing, faLightbulb, faListAlt, faMap, faMeh, faMehBlank, faMehRollingEyes, faMinusSquare, faMoneyBillAlt, faMoon, faNewspaper, faObjectGroup, faObjectUngroup, faPaperPlane, faPauseCircle, faPlayCircle, faPlusSquare, faQuestionCircle, faRegistered, faSadCry, faSadTear, faSave, faShareSquare, faSmile, faSmileBeam, faSmileWink, faSnowflake, faSquare, faStar, faStarHalf, faStickyNote, faStopCircle, faSun, faSurprise, faThumbsDown, faThumbsUp, faTimesCircle, faTired, faTrashAlt, faUser, faUserCircle, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore */
|
2620
2564
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
2621
2565
|
|
@@ -3697,9 +3641,9 @@ var _iconsCache = {
|
|
3697
3641
|
/***/ }),
|
3698
3642
|
|
3699
3643
|
/***/ "../../../../node_modules/@fortawesome/free-solid-svg-icons/index.es.js":
|
3700
|
-
|
3701
|
-
!***
|
3702
|
-
|
3644
|
+
/*!****************************************************************************************!*\
|
3645
|
+
!*** E:/Babylon/Babylon.js/node_modules/@fortawesome/free-solid-svg-icons/index.es.js ***!
|
3646
|
+
\****************************************************************************************/
|
3703
3647
|
/*! exports provided: fas, prefix, faAd, faAddressBook, faAddressCard, faAdjust, faAirFreshener, faAlignCenter, faAlignJustify, faAlignLeft, faAlignRight, faAllergies, faAmbulance, faAmericanSignLanguageInterpreting, faAnchor, faAngleDoubleDown, faAngleDoubleLeft, faAngleDoubleRight, faAngleDoubleUp, faAngleDown, faAngleLeft, faAngleRight, faAngleUp, faAngry, faAnkh, faAppleAlt, faArchive, faArchway, faArrowAltCircleDown, faArrowAltCircleLeft, faArrowAltCircleRight, faArrowAltCircleUp, faArrowCircleDown, faArrowCircleLeft, faArrowCircleRight, faArrowCircleUp, faArrowDown, faArrowLeft, faArrowRight, faArrowUp, faArrowsAlt, faArrowsAltH, faArrowsAltV, faAssistiveListeningSystems, faAsterisk, faAt, faAtlas, faAtom, faAudioDescription, faAward, faBaby, faBabyCarriage, faBackspace, faBackward, faBacon, faBacteria, faBacterium, faBahai, faBalanceScale, faBalanceScaleLeft, faBalanceScaleRight, faBan, faBandAid, faBarcode, faBars, faBaseballBall, faBasketballBall, faBath, faBatteryEmpty, faBatteryFull, faBatteryHalf, faBatteryQuarter, faBatteryThreeQuarters, faBed, faBeer, faBell, faBellSlash, faBezierCurve, faBible, faBicycle, faBiking, faBinoculars, faBiohazard, faBirthdayCake, faBlender, faBlenderPhone, faBlind, faBlog, faBold, faBolt, faBomb, faBone, faBong, faBook, faBookDead, faBookMedical, faBookOpen, faBookReader, faBookmark, faBorderAll, faBorderNone, faBorderStyle, faBowlingBall, faBox, faBoxOpen, faBoxTissue, faBoxes, faBraille, faBrain, faBreadSlice, faBriefcase, faBriefcaseMedical, faBroadcastTower, faBroom, faBrush, faBug, faBuilding, faBullhorn, faBullseye, faBurn, faBus, faBusAlt, faBusinessTime, faCalculator, faCalendar, faCalendarAlt, faCalendarCheck, faCalendarDay, faCalendarMinus, faCalendarPlus, faCalendarTimes, faCalendarWeek, faCamera, faCameraRetro, faCampground, faCandyCane, faCannabis, faCapsules, faCar, faCarAlt, faCarBattery, faCarCrash, faCarSide, faCaravan, faCaretDown, faCaretLeft, faCaretRight, faCaretSquareDown, faCaretSquareLeft, faCaretSquareRight, faCaretSquareUp, faCaretUp, faCarrot, faCartArrowDown, faCartPlus, faCashRegister, faCat, faCertificate, faChair, faChalkboard, faChalkboardTeacher, faChargingStation, faChartArea, faChartBar, faChartLine, faChartPie, faCheck, faCheckCircle, faCheckDouble, faCheckSquare, faCheese, faChess, faChessBishop, faChessBoard, faChessKing, faChessKnight, faChessPawn, faChessQueen, faChessRook, faChevronCircleDown, faChevronCircleLeft, faChevronCircleRight, faChevronCircleUp, faChevronDown, faChevronLeft, faChevronRight, faChevronUp, faChild, faChurch, faCircle, faCircleNotch, faCity, faClinicMedical, faClipboard, faClipboardCheck, faClipboardList, faClock, faClone, faClosedCaptioning, faCloud, faCloudDownloadAlt, faCloudMeatball, faCloudMoon, faCloudMoonRain, faCloudRain, faCloudShowersHeavy, faCloudSun, faCloudSunRain, faCloudUploadAlt, faCocktail, faCode, faCodeBranch, faCoffee, faCog, faCogs, faCoins, faColumns, faComment, faCommentAlt, faCommentDollar, faCommentDots, faCommentMedical, faCommentSlash, faComments, faCommentsDollar, faCompactDisc, faCompass, faCompress, faCompressAlt, faCompressArrowsAlt, faConciergeBell, faCookie, faCookieBite, faCopy, faCopyright, faCouch, faCreditCard, faCrop, faCropAlt, faCross, faCrosshairs, faCrow, faCrown, faCrutch, faCube, faCubes, faCut, faDatabase, faDeaf, faDemocrat, faDesktop, faDharmachakra, faDiagnoses, faDice, faDiceD20, faDiceD6, faDiceFive, faDiceFour, faDiceOne, faDiceSix, faDiceThree, faDiceTwo, faDigitalTachograph, faDirections, faDisease, faDivide, faDizzy, faDna, faDog, faDollarSign, faDolly, faDollyFlatbed, faDonate, faDoorClosed, faDoorOpen, faDotCircle, faDove, faDownload, faDraftingCompass, faDragon, faDrawPolygon, faDrum, faDrumSteelpan, faDrumstickBite, faDumbbell, faDumpster, faDumpsterFire, faDungeon, faEdit, faEgg, faEject, faEllipsisH, faEllipsisV, faEnvelope, faEnvelopeOpen, faEnvelopeOpenText, faEnvelopeSquare, faEquals, faEraser, faEthernet, faEuroSign, faExchangeAlt, faExclamation, faExclamationCircle, faExclamationTriangle, faExpand, faExpandAlt, faExpandArrowsAlt, faExternalLinkAlt, faExternalLinkSquareAlt, faEye, faEyeDropper, faEyeSlash, faFan, faFastBackward, faFastForward, faFaucet, faFax, faFeather, faFeatherAlt, faFemale, faFighterJet, faFile, faFileAlt, faFileArchive, faFileAudio, faFileCode, faFileContract, faFileCsv, faFileDownload, faFileExcel, faFileExport, faFileImage, faFileImport, faFileInvoice, faFileInvoiceDollar, faFileMedical, faFileMedicalAlt, faFilePdf, faFilePowerpoint, faFilePrescription, faFileSignature, faFileUpload, faFileVideo, faFileWord, faFill, faFillDrip, faFilm, faFilter, faFingerprint, faFire, faFireAlt, faFireExtinguisher, faFirstAid, faFish, faFistRaised, faFlag, faFlagCheckered, faFlagUsa, faFlask, faFlushed, faFolder, faFolderMinus, faFolderOpen, faFolderPlus, faFont, faFontAwesomeLogoFull, faFootballBall, faForward, faFrog, faFrown, faFrownOpen, faFunnelDollar, faFutbol, faGamepad, faGasPump, faGavel, faGem, faGenderless, faGhost, faGift, faGifts, faGlassCheers, faGlassMartini, faGlassMartiniAlt, faGlassWhiskey, faGlasses, faGlobe, faGlobeAfrica, faGlobeAmericas, faGlobeAsia, faGlobeEurope, faGolfBall, faGopuram, faGraduationCap, faGreaterThan, faGreaterThanEqual, faGrimace, faGrin, faGrinAlt, faGrinBeam, faGrinBeamSweat, faGrinHearts, faGrinSquint, faGrinSquintTears, faGrinStars, faGrinTears, faGrinTongue, faGrinTongueSquint, faGrinTongueWink, faGrinWink, faGripHorizontal, faGripLines, faGripLinesVertical, faGripVertical, faGuitar, faHSquare, faHamburger, faHammer, faHamsa, faHandHolding, faHandHoldingHeart, faHandHoldingMedical, faHandHoldingUsd, faHandHoldingWater, faHandLizard, faHandMiddleFinger, faHandPaper, faHandPeace, faHandPointDown, faHandPointLeft, faHandPointRight, faHandPointUp, faHandPointer, faHandRock, faHandScissors, faHandSparkles, faHandSpock, faHands, faHandsHelping, faHandsWash, faHandshake, faHandshakeAltSlash, faHandshakeSlash, faHanukiah, faHardHat, faHashtag, faHatCowboy, faHatCowboySide, faHatWizard, faHdd, faHeadSideCough, faHeadSideCoughSlash, faHeadSideMask, faHeadSideVirus, faHeading, faHeadphones, faHeadphonesAlt, faHeadset, faHeart, faHeartBroken, faHeartbeat, faHelicopter, faHighlighter, faHiking, faHippo, faHistory, faHockeyPuck, faHollyBerry, faHome, faHorse, faHorseHead, faHospital, faHospitalAlt, faHospitalSymbol, faHospitalUser, faHotTub, faHotdog, faHotel, faHourglass, faHourglassEnd, faHourglassHalf, faHourglassStart, faHouseDamage, faHouseUser, faHryvnia, faICursor, faIceCream, faIcicles, faIcons, faIdBadge, faIdCard, faIdCardAlt, faIgloo, faImage, faImages, faInbox, faIndent, faIndustry, faInfinity, faInfo, faInfoCircle, faItalic, faJedi, faJoint, faJournalWhills, faKaaba, faKey, faKeyboard, faKhanda, faKiss, faKissBeam, faKissWinkHeart, faKiwiBird, faLandmark, faLanguage, faLaptop, faLaptopCode, faLaptopHouse, faLaptopMedical, faLaugh, faLaughBeam, faLaughSquint, faLaughWink, faLayerGroup, faLeaf, faLemon, faLessThan, faLessThanEqual, faLevelDownAlt, faLevelUpAlt, faLifeRing, faLightbulb, faLink, faLiraSign, faList, faListAlt, faListOl, faListUl, faLocationArrow, faLock, faLockOpen, faLongArrowAltDown, faLongArrowAltLeft, faLongArrowAltRight, faLongArrowAltUp, faLowVision, faLuggageCart, faLungs, faLungsVirus, faMagic, faMagnet, faMailBulk, faMale, faMap, faMapMarked, faMapMarkedAlt, faMapMarker, faMapMarkerAlt, faMapPin, faMapSigns, faMarker, faMars, faMarsDouble, faMarsStroke, faMarsStrokeH, faMarsStrokeV, faMask, faMedal, faMedkit, faMeh, faMehBlank, faMehRollingEyes, faMemory, faMenorah, faMercury, faMeteor, faMicrochip, faMicrophone, faMicrophoneAlt, faMicrophoneAltSlash, faMicrophoneSlash, faMicroscope, faMinus, faMinusCircle, faMinusSquare, faMitten, faMobile, faMobileAlt, faMoneyBill, faMoneyBillAlt, faMoneyBillWave, faMoneyBillWaveAlt, faMoneyCheck, faMoneyCheckAlt, faMonument, faMoon, faMortarPestle, faMosque, faMotorcycle, faMountain, faMouse, faMousePointer, faMugHot, faMusic, faNetworkWired, faNeuter, faNewspaper, faNotEqual, faNotesMedical, faObjectGroup, faObjectUngroup, faOilCan, faOm, faOtter, faOutdent, faPager, faPaintBrush, faPaintRoller, faPalette, faPallet, faPaperPlane, faPaperclip, faParachuteBox, faParagraph, faParking, faPassport, faPastafarianism, faPaste, faPause, faPauseCircle, faPaw, faPeace, faPen, faPenAlt, faPenFancy, faPenNib, faPenSquare, faPencilAlt, faPencilRuler, faPeopleArrows, faPeopleCarry, faPepperHot, faPercent, faPercentage, faPersonBooth, faPhone, faPhoneAlt, faPhoneSlash, faPhoneSquare, faPhoneSquareAlt, faPhoneVolume, faPhotoVideo, faPiggyBank, faPills, faPizzaSlice, faPlaceOfWorship, faPlane, faPlaneArrival, faPlaneDeparture, faPlaneSlash, faPlay, faPlayCircle, faPlug, faPlus, faPlusCircle, faPlusSquare, faPodcast, faPoll, faPollH, faPoo, faPooStorm, faPoop, faPortrait, faPoundSign, faPowerOff, faPray, faPrayingHands, faPrescription, faPrescriptionBottle, faPrescriptionBottleAlt, faPrint, faProcedures, faProjectDiagram, faPumpMedical, faPumpSoap, faPuzzlePiece, faQrcode, faQuestion, faQuestionCircle, faQuidditch, faQuoteLeft, faQuoteRight, faQuran, faRadiation, faRadiationAlt, faRainbow, faRandom, faReceipt, faRecordVinyl, faRecycle, faRedo, faRedoAlt, faRegistered, faRemoveFormat, faReply, faReplyAll, faRepublican, faRestroom, faRetweet, faRibbon, faRing, faRoad, faRobot, faRocket, faRoute, faRss, faRssSquare, faRubleSign, faRuler, faRulerCombined, faRulerHorizontal, faRulerVertical, faRunning, faRupeeSign, faSadCry, faSadTear, faSatellite, faSatelliteDish, faSave, faSchool, faScrewdriver, faScroll, faSdCard, faSearch, faSearchDollar, faSearchLocation, faSearchMinus, faSearchPlus, faSeedling, faServer, faShapes, faShare, faShareAlt, faShareAltSquare, faShareSquare, faShekelSign, faShieldAlt, faShieldVirus, faShip, faShippingFast, faShoePrints, faShoppingBag, faShoppingBasket, faShoppingCart, faShower, faShuttleVan, faSign, faSignInAlt, faSignLanguage, faSignOutAlt, faSignal, faSignature, faSimCard, faSink, faSitemap, faSkating, faSkiing, faSkiingNordic, faSkull, faSkullCrossbones, faSlash, faSleigh, faSlidersH, faSmile, faSmileBeam, faSmileWink, faSmog, faSmoking, faSmokingBan, faSms, faSnowboarding, faSnowflake, faSnowman, faSnowplow, faSoap, faSocks, faSolarPanel, faSort, faSortAlphaDown, faSortAlphaDownAlt, faSortAlphaUp, faSortAlphaUpAlt, faSortAmountDown, faSortAmountDownAlt, faSortAmountUp, faSortAmountUpAlt, faSortDown, faSortNumericDown, faSortNumericDownAlt, faSortNumericUp, faSortNumericUpAlt, faSortUp, faSpa, faSpaceShuttle, faSpellCheck, faSpider, faSpinner, faSplotch, faSprayCan, faSquare, faSquareFull, faSquareRootAlt, faStamp, faStar, faStarAndCrescent, faStarHalf, faStarHalfAlt, faStarOfDavid, faStarOfLife, faStepBackward, faStepForward, faStethoscope, faStickyNote, faStop, faStopCircle, faStopwatch, faStopwatch20, faStore, faStoreAlt, faStoreAltSlash, faStoreSlash, faStream, faStreetView, faStrikethrough, faStroopwafel, faSubscript, faSubway, faSuitcase, faSuitcaseRolling, faSun, faSuperscript, faSurprise, faSwatchbook, faSwimmer, faSwimmingPool, faSynagogue, faSync, faSyncAlt, faSyringe, faTable, faTableTennis, faTablet, faTabletAlt, faTablets, faTachometerAlt, faTag, faTags, faTape, faTasks, faTaxi, faTeeth, faTeethOpen, faTemperatureHigh, faTemperatureLow, faTenge, faTerminal, faTextHeight, faTextWidth, faTh, faThLarge, faThList, faTheaterMasks, faThermometer, faThermometerEmpty, faThermometerFull, faThermometerHalf, faThermometerQuarter, faThermometerThreeQuarters, faThumbsDown, faThumbsUp, faThumbtack, faTicketAlt, faTimes, faTimesCircle, faTint, faTintSlash, faTired, faToggleOff, faToggleOn, faToilet, faToiletPaper, faToiletPaperSlash, faToolbox, faTools, faTooth, faTorah, faToriiGate, faTractor, faTrademark, faTrafficLight, faTrailer, faTrain, faTram, faTransgender, faTransgenderAlt, faTrash, faTrashAlt, faTrashRestore, faTrashRestoreAlt, faTree, faTrophy, faTruck, faTruckLoading, faTruckMonster, faTruckMoving, faTruckPickup, faTshirt, faTty, faTv, faUmbrella, faUmbrellaBeach, faUnderline, faUndo, faUndoAlt, faUniversalAccess, faUniversity, faUnlink, faUnlock, faUnlockAlt, faUpload, faUser, faUserAlt, faUserAltSlash, faUserAstronaut, faUserCheck, faUserCircle, faUserClock, faUserCog, faUserEdit, faUserFriends, faUserGraduate, faUserInjured, faUserLock, faUserMd, faUserMinus, faUserNinja, faUserNurse, faUserPlus, faUserSecret, faUserShield, faUserSlash, faUserTag, faUserTie, faUserTimes, faUsers, faUsersCog, faUsersSlash, faUtensilSpoon, faUtensils, faVectorSquare, faVenus, faVenusDouble, faVenusMars, faVial, faVials, faVideo, faVideoSlash, faVihara, faVirus, faVirusSlash, faViruses, faVoicemail, faVolleyballBall, faVolumeDown, faVolumeMute, faVolumeOff, faVolumeUp, faVoteYea, faVrCardboard, faWalking, faWallet, faWarehouse, faWater, faWaveSquare, faWeight, faWeightHanging, faWheelchair, faWifi, faWind, faWindowClose, faWindowMaximize, faWindowMinimize, faWindowRestore, faWineBottle, faWineGlass, faWineGlassAlt, faWonSign, faWrench, faXRay, faYenSign, faYinYang */
|
3704
3648
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
3705
3649
|
|
@@ -10717,9 +10661,9 @@ var _iconsCache = {
|
|
10717
10661
|
/***/ }),
|
10718
10662
|
|
10719
10663
|
/***/ "../../../../node_modules/@fortawesome/react-fontawesome/index.es.js":
|
10720
|
-
|
10721
|
-
!***
|
10722
|
-
|
10664
|
+
/*!*************************************************************************************!*\
|
10665
|
+
!*** E:/Babylon/Babylon.js/node_modules/@fortawesome/react-fontawesome/index.es.js ***!
|
10666
|
+
\*************************************************************************************/
|
10723
10667
|
/*! exports provided: FontAwesomeIcon */
|
10724
10668
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
10725
10669
|
|
@@ -10992,9 +10936,12 @@ function log () {
|
|
10992
10936
|
}
|
10993
10937
|
}
|
10994
10938
|
|
10995
|
-
// Normalize icon arguments
|
10996
10939
|
function normalizeIconArgs(icon) {
|
10997
|
-
|
10940
|
+
if (_fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["parse"].icon) {
|
10941
|
+
return _fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["parse"].icon(icon);
|
10942
|
+
} // if the icon is null, there's nothing to do
|
10943
|
+
|
10944
|
+
|
10998
10945
|
if (icon === null) {
|
10999
10946
|
return null;
|
11000
10947
|
} // if the icon is an object and has a prefix and an icon name, return it
|
@@ -11041,14 +10988,16 @@ function FontAwesomeIcon(_ref) {
|
|
11041
10988
|
maskArgs = props.mask,
|
11042
10989
|
symbol = props.symbol,
|
11043
10990
|
className = props.className,
|
11044
|
-
title = props.title
|
10991
|
+
title = props.title,
|
10992
|
+
titleId = props.titleId;
|
11045
10993
|
var iconLookup = normalizeIconArgs(iconArgs);
|
11046
10994
|
var classes = objectWithKey('classes', [].concat(_toConsumableArray(classList(props)), _toConsumableArray(className.split(' '))));
|
11047
10995
|
var transform = objectWithKey('transform', typeof props.transform === 'string' ? _fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["parse"].transform(props.transform) : props.transform);
|
11048
10996
|
var mask = objectWithKey('mask', normalizeIconArgs(maskArgs));
|
11049
10997
|
var renderedIcon = Object(_fortawesome_fontawesome_svg_core__WEBPACK_IMPORTED_MODULE_0__["icon"])(iconLookup, _objectSpread2({}, classes, {}, transform, {}, mask, {
|
11050
10998
|
symbol: symbol,
|
11051
|
-
title: title
|
10999
|
+
title: title,
|
11000
|
+
titleId: titleId
|
11052
11001
|
}));
|
11053
11002
|
|
11054
11003
|
if (!renderedIcon) {
|
@@ -11115,14 +11064,14 @@ var convertCurry = convert.bind(null, react__WEBPACK_IMPORTED_MODULE_2___default
|
|
11115
11064
|
/***/ }),
|
11116
11065
|
|
11117
11066
|
/***/ "../../../../node_modules/classnames/index.js":
|
11118
|
-
|
11119
|
-
!***
|
11120
|
-
|
11067
|
+
/*!**************************************************************!*\
|
11068
|
+
!*** E:/Babylon/Babylon.js/node_modules/classnames/index.js ***!
|
11069
|
+
\**************************************************************/
|
11121
11070
|
/*! no static exports found */
|
11122
11071
|
/***/ (function(module, exports, __webpack_require__) {
|
11123
11072
|
|
11124
11073
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
11125
|
-
Copyright (c)
|
11074
|
+
Copyright (c) 2018 Jed Watson.
|
11126
11075
|
Licensed under the MIT License (MIT), see
|
11127
11076
|
http://jedwatson.github.io/classnames
|
11128
11077
|
*/
|
@@ -11133,7 +11082,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
11133
11082
|
|
11134
11083
|
var hasOwn = {}.hasOwnProperty;
|
11135
11084
|
|
11136
|
-
function classNames
|
11085
|
+
function classNames() {
|
11137
11086
|
var classes = [];
|
11138
11087
|
|
11139
11088
|
for (var i = 0; i < arguments.length; i++) {
|
@@ -11144,16 +11093,22 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
11144
11093
|
|
11145
11094
|
if (argType === 'string' || argType === 'number') {
|
11146
11095
|
classes.push(arg);
|
11147
|
-
} else if (Array.isArray(arg)
|
11148
|
-
|
11149
|
-
|
11150
|
-
|
11096
|
+
} else if (Array.isArray(arg)) {
|
11097
|
+
if (arg.length) {
|
11098
|
+
var inner = classNames.apply(null, arg);
|
11099
|
+
if (inner) {
|
11100
|
+
classes.push(inner);
|
11101
|
+
}
|
11151
11102
|
}
|
11152
11103
|
} else if (argType === 'object') {
|
11153
|
-
|
11154
|
-
|
11155
|
-
|
11104
|
+
if (arg.toString === Object.prototype.toString) {
|
11105
|
+
for (var key in arg) {
|
11106
|
+
if (hasOwn.call(arg, key) && arg[key]) {
|
11107
|
+
classes.push(key);
|
11108
|
+
}
|
11156
11109
|
}
|
11110
|
+
} else {
|
11111
|
+
classes.push(arg.toString());
|
11157
11112
|
}
|
11158
11113
|
}
|
11159
11114
|
}
|
@@ -11177,9 +11132,9 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
11177
11132
|
/***/ }),
|
11178
11133
|
|
11179
11134
|
/***/ "../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./components/actionTabs/actionTabs.scss":
|
11180
|
-
|
11181
|
-
!***
|
11182
|
-
|
11135
|
+
/*!********************************************************************************************************************************************************************!*\
|
11136
|
+
!*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/cjs.js!E:/Babylon/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/actionTabs/actionTabs.scss ***!
|
11137
|
+
\********************************************************************************************************************************************************************/
|
11183
11138
|
/*! no static exports found */
|
11184
11139
|
/***/ (function(module, exports, __webpack_require__) {
|
11185
11140
|
|
@@ -11187,7 +11142,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
11187
11142
|
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../../../node_modules/css-loader/dist/runtime/api.js */ "../../../../node_modules/css-loader/dist/runtime/api.js");
|
11188
11143
|
exports = ___CSS_LOADER_API_IMPORT___(false);
|
11189
11144
|
// Module
|
11190
|
-
exports.push([module.i, "#inspector-host {\n position: absolute;\n right: 0px;\n top: 0px;\n bottom: 0px; }\n\n#__resizable_base__ {\n display: none; }\n\n#actionTabs {\n background: #333333;\n height: 100%;\n margin: 0;\n padding: 0;\n display: grid;\n grid-template-rows: auto 1fr;\n font: 14px \"Arial\";\n overflow: hidden; }\n #actionTabs .hoverIcon:hover {\n opacity: 0.8; }\n #actionTabs #header {\n height: 30px;\n font-size: 16px;\n color: white;\n background: #222222;\n grid-row: 1;\n text-align: center;\n display: grid;\n grid-template-columns: 30px 1fr 50px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n #actionTabs #header #logo {\n grid-column: 1;\n width: 24px;\n height: 24px;\n display: flex;\n align-self: center;\n justify-self: center; }\n #actionTabs #header #back {\n grid-column: 1;\n display: grid;\n align-self: center;\n justify-self: center;\n cursor: pointer; }\n #actionTabs #header #title {\n grid-column: 2;\n display: grid;\n align-items: center;\n text-align: center; }\n #actionTabs #header #commands {\n grid-column: 3;\n display: grid;\n align-items: center;\n grid-template-columns: 1fr 1fr; }\n #actionTabs #header #commands .expand {\n grid-column: 1;\n display: grid;\n align-items: center;\n justify-items: center;\n cursor: pointer; }\n #actionTabs #header #commands .close {\n grid-column: 2;\n display: grid;\n align-items: center;\n justify-items: center;\n cursor: pointer; }\n #actionTabs .tabs {\n display: grid;\n grid-row: 2;\n grid-template-rows: 40px 1fr;\n font: 14px \"Arial\";\n overflow: hidden; }\n #actionTabs .tabs .labels {\n grid-row: 1;\n display: flex;\n align-items: center;\n justify-items: center;\n border-bottom: 1px solid #ffffff;\n margin: 0;\n padding: 0; }\n #actionTabs .tabs .labels .label {\n font-size: 24px;\n color: white;\n width: 40px;\n display: flex;\n align-content: center;\n justify-content: center;\n border: 1px solid transparent;\n border-bottom: none;\n background: #333333;\n padding: 5px;\n height: 28px;\n cursor: pointer; }\n #actionTabs .tabs .labels .label.active {\n border-color: #ffffff;\n border-bottom: 2px solid transparent;\n margin-bottom: -2px; }\n #actionTabs .tabs .panes {\n grid-row: 2;\n display: grid;\n grid-template-rows: 100%;\n overflow: hidden; }\n #actionTabs .tabs .panes .infoMessage {\n opacity: 0.5;\n color: white;\n margin: 15px 5px 0px 5px; }\n #actionTabs .tabs .panes .gradient-step {\n display: grid;\n grid-template-rows: 100%;\n grid-template-columns: 20px 30px 40px auto 20px 30px;\n padding-top: 5px;\n padding-left: 5px;\n padding-bottom: 5px;\n align-items: center; }\n #actionTabs .tabs .panes .gradient-step .step {\n grid-row: 1;\n grid-column: 1; }\n #actionTabs .tabs .panes .gradient-step .color1 {\n height: 100%; }\n #actionTabs .tabs .panes .gradient-step .color2 {\n height: 100%;\n padding-left: 5px; }\n #actionTabs .tabs .panes .gradient-step .factor1 {\n grid-row: 1;\n grid-column: 2;\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .factor2 {\n padding-left: 5px;\n grid-row: 1;\n grid-column: 3;\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .factor2 .grayed {\n background: gray;\n border-color: gray; }\n #actionTabs .tabs .panes .gradient-step .numeric-input {\n width: calc(100% - 5px); }\n #actionTabs .tabs .panes .gradient-step .icon {\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .step-value {\n margin-left: 5px;\n grid-row: 1;\n grid-column: 3;\n text-align: right;\n margin-right: 5px; }\n #actionTabs .tabs .panes .gradient-step .step-slider {\n grid-row: 1;\n grid-column: 4;\n display: grid;\n justify-content: stretch;\n align-content: center;\n margin-right: 12px; }\n #actionTabs .tabs .panes .gradient-step .step-slider input {\n width: 100%; }\n #actionTabs .tabs .panes .gradient-step .step-slider .range:hover {\n opacity: 1; }\n #actionTabs .tabs .panes .gradient-step .step-slider .range {\n -webkit-appearance: none;\n height: 6px;\n background: #d3d3d3;\n border-radius: 5px;\n outline: none;\n opacity: 0.7;\n -webkit-transition: .2s;\n transition: opacity .2s; }\n #actionTabs .tabs .panes .gradient-step .step-slider .range::-webkit-slider-thumb {\n -webkit-appearance: none;\n appearance: none;\n width: 14px;\n height: 14px;\n border-radius: 50%;\n background: #337ab7;\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .step-slider .range::-moz-range-thumb {\n width: 14px;\n height: 14px;\n border-radius: 50%;\n background: #337ab7;\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .gradient-copy {\n grid-row: 1;\n grid-column: 5;\n display: grid;\n align-content: center;\n justify-content: center; }\n #actionTabs .tabs .panes .gradient-step .gradient-copy .img {\n height: 20px;\n width: 20px; }\n #actionTabs .tabs .panes .gradient-step .gradient-copy .img:hover {\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .gradient-delete {\n grid-row: 1;\n grid-column: 6;\n display: grid;\n align-content: center;\n justify-content: center; }\n #actionTabs .tabs .panes .gradient-step .gradient-delete .img {\n height: 20px;\n width: 20px; }\n #actionTabs .tabs .panes .gradient-step .gradient-delete .img:hover {\n cursor: pointer; }\n #actionTabs .tabs .panes .pane {\n color: white;\n overflow-x: hidden;\n overflow-y: auto;\n height: 100%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n #actionTabs .tabs .panes .pane .animation-info {\n border-left: greenyellow 3px solid;\n margin-left: 5px;\n padding-left: 5px !important; }\n #actionTabs .tabs .panes .pane .underline {\n border-bottom: 0.5px solid rgba(255, 255, 255, 0.5); }\n #actionTabs .tabs .panes .pane .textureLinkLine {\n display: grid;\n grid-template-columns: auto 1fr; }\n #actionTabs .tabs .panes .pane .textureLinkLine .debug {\n grid-column: 1;\n margin-left: 5px;\n margin-right: 5px;\n display: block;\n align-items: center;\n justify-items: center;\n cursor: pointer;\n opacity: 0.5; }\n #actionTabs .tabs .panes .pane .textureLinkLine .debug.selected {\n opacity: 1.0; }\n #actionTabs .tabs .panes .pane .textureLinkLine .textLine {\n grid-column: 2; }\n #actionTabs .tabs .panes .pane .textureLinkLine .actionIcon {\n display: inline-block;\n margin-top: 6px;\n margin-right: 4px; }\n #actionTabs .tabs .panes .pane .messageLine {\n text-align: center;\n font-size: 12px;\n font-style: italic;\n opacity: 0.6; }\n #actionTabs .tabs .panes .pane .iconMessageLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 30px 1fr; }\n #actionTabs .tabs .panes .pane .iconMessageLine .icon {\n grid-column: 1;\n display: grid;\n align-items: center;\n justify-items: center; }\n #actionTabs .tabs .panes .pane .iconMessageLine .value {\n grid-column: 2;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .color-picker {\n height: calc(100% - 8px);\n margin: 4px;\n width: 100%; }\n #actionTabs .tabs .panes .pane .color-picker .color-rect {\n height: calc(100% - 4px);\n border: 2px white solid;\n cursor: pointer;\n min-height: 18px; }\n #actionTabs .tabs .panes .pane .color-picker .color-picker-cover {\n position: fixed;\n top: 0px;\n right: 0px;\n bottom: 0px;\n left: 0px;\n z-index: 100; }\n #actionTabs .tabs .panes .pane .color-picker .color-picker-float {\n position: absolute; }\n #actionTabs .tabs .panes .pane .linkButtonLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr auto 20px; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link {\n grid-column: 1;\n display: flex;\n align-items: center;\n text-decoration: underline;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-button {\n grid-column: 2; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-button button {\n background: #222222;\n border: 1px solid #337ab7;\n margin: 5px 10px 5px 10px;\n color: white;\n padding: 4px 5px;\n opacity: 0.9;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-button button:hover {\n opacity: 1.0; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-button button:active {\n background: #282828; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-button button:focus {\n border: 1px solid #337ab7;\n outline: 0px; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-icon {\n grid-column: 3;\n display: grid;\n align-content: center; }\n #actionTabs .tabs .panes .pane .textLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr auto; }\n #actionTabs .tabs .panes .pane .textLine.indented {\n grid-template-columns: 100%; }\n #actionTabs .tabs .panes .pane .textLine.indented .link-value {\n grid-column: 1;\n text-align: start;\n margin-left: 20px;\n opacity: 0.6;\n max-width: unset; }\n #actionTabs .tabs .panes .pane .textLine.indented .value {\n grid-column: 1;\n text-align: start;\n margin-left: 20px;\n opacity: 0.6;\n max-width: unset; }\n #actionTabs .tabs .panes .pane .textLine.reduced-opacity {\n opacity: 0.6;\n padding-left: 25px; }\n #actionTabs .tabs .panes .pane .textLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .textLine .link-value {\n grid-column: 2;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n text-align: end;\n opacity: 0.8;\n margin: 5px;\n margin-top: 7px;\n max-width: 140px;\n text-decoration: underline;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .textLine .value {\n grid-column: 2;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n text-align: end;\n opacity: 0.8;\n margin: 5px;\n margin-top: 7px;\n max-width: 200px;\n -webkit-user-select: text;\n -moz-user-select: text;\n -ms-user-select: text;\n user-select: text; }\n #actionTabs .tabs .panes .pane .textLine .value.check {\n color: green; }\n #actionTabs .tabs .panes .pane .textLine .value.uncheck {\n color: red; }\n #actionTabs .tabs .panes .pane .gradient-container {\n margin-top: 3px; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-label {\n height: 30px;\n display: grid;\n align-content: center; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step {\n display: grid;\n grid-template-rows: 100%;\n grid-template-columns: 25px 50px 55px 40px auto 20px 5px;\n padding-top: 5px;\n padding-left: 5px;\n padding-bottom: 5px;\n align-items: center;\n border-left: orange 3px solid; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .step {\n grid-row: 1;\n grid-column: 1; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .color1 {\n height: 100%; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .color2 {\n height: 100%;\n padding-left: 5px; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .factor1 {\n grid-row: 1;\n grid-column: 2;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .factor2 {\n padding-left: 5px;\n grid-row: 1;\n grid-column: 3;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .factor2 .grayed {\n background: gray;\n border-color: gray; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .numeric-input {\n width: calc(100% - 5px); }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .step-value {\n margin-left: 5px;\n grid-row: 1;\n grid-column: 4;\n text-align: right;\n margin-right: 5px; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .step-slider {\n grid-row: 1;\n grid-column: 5;\n display: grid;\n justify-content: stretch;\n align-content: center;\n margin-right: 5px; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .step-slider input {\n width: 100%; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .gradient-delete {\n grid-row: 1;\n grid-column: 6;\n display: grid;\n align-content: center;\n justify-content: center; }\n #actionTabs .tabs .panes .pane .textInputLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr 120px; }\n #actionTabs .tabs .panes .pane .textInputLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .textInputLine .value {\n display: flex;\n align-items: center;\n grid-column: 2; }\n #actionTabs .tabs .panes .pane .textInputLine .value input {\n width: 110px; }\n #actionTabs .tabs .panes .pane .buttonLine {\n height: 30px;\n display: grid;\n align-items: center;\n justify-items: stretch; }\n #actionTabs .tabs .panes .pane .buttonLine input[type=\"file\"] {\n display: none; }\n #actionTabs .tabs .panes .pane .buttonLine .file-upload {\n background: #222222;\n border: 1px solid #337ab7;\n margin: 5px 10px 5px 10px;\n color: white;\n padding: 4px 5px;\n font-size: 13px;\n opacity: 0.9;\n cursor: pointer;\n text-align: center; }\n #actionTabs .tabs .panes .pane .buttonLine .file-upload:hover {\n opacity: 1.0; }\n #actionTabs .tabs .panes .pane .buttonLine .file-upload:active {\n transform: scale(0.98);\n transform-origin: 0.5 0.5; }\n #actionTabs .tabs .panes .pane .buttonLine button {\n background: #222222;\n border: 1px solid #337ab7;\n margin: 5px 10px 5px 10px;\n color: white;\n padding: 4px 5px;\n opacity: 0.9;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .buttonLine button:hover {\n opacity: 1.0; }\n #actionTabs .tabs .panes .pane .buttonLine button:active {\n background: #282828; }\n #actionTabs .tabs .panes .pane .buttonLine button:focus {\n border: 1px solid #337ab7;\n outline: 0px; }\n #actionTabs .tabs .panes .pane .radioLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr 24px; }\n #actionTabs .tabs .panes .pane .radioLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer {\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .radio {\n grid-column: 2;\n display: none; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .radio:checked + label:before {\n border-color: #337ab7; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .radio:checked + label:after {\n transform: scale(1); }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .labelForRadio {\n display: inline-block;\n height: 14px;\n position: relative;\n padding: 0 24px;\n margin-bottom: 0;\n cursor: pointer;\n vertical-align: bottom; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .labelForRadio:before, #actionTabs .tabs .panes .pane .radioLine .radioContainer .labelForRadio:after {\n position: absolute;\n content: '';\n border-radius: 50%;\n transition: all .3s ease;\n transition-property: transform, border-color; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .labelForRadio:before {\n left: 0px;\n top: 0;\n width: 16px;\n height: 16px;\n border: 2px solid white; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .labelForRadio:after {\n top: 6px;\n left: 6px;\n width: 8px;\n height: 8px;\n transform: scale(0);\n background: #337ab7; }\n #actionTabs .tabs .panes .pane .vector3Line {\n padding-left: 2px;\n display: grid; }\n #actionTabs .tabs .panes .pane .vector3Line .firstLine {\n display: grid;\n grid-template-columns: 1fr auto 20px;\n height: 30px; }\n #actionTabs .tabs .panes .pane .vector3Line .firstLine .label {\n grid-column: 1;\n display: flex;\n align-items: center;\n white-space: nowrap;\n overflow: hidden; }\n #actionTabs .tabs .panes .pane .vector3Line .firstLine .vector {\n grid-column: 2;\n display: flex;\n align-items: center;\n text-align: right;\n opacity: 0.8; }\n #actionTabs .tabs .panes .pane .vector3Line .firstLine .expand {\n grid-column: 3;\n display: grid;\n align-items: center;\n justify-items: center;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .vector3Line .secondLine {\n display: grid;\n padding-right: 5px;\n border-left: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .vector3Line .secondLine .numeric {\n display: grid;\n grid-template-columns: 1fr auto; }\n #actionTabs .tabs .panes .pane .vector3Line .secondLine .numeric-label {\n text-align: right;\n grid-column: 1;\n display: flex;\n align-items: center;\n justify-self: right;\n margin-right: 10px; }\n #actionTabs .tabs .panes .pane .vector3Line .secondLine .numeric-value {\n width: 120px;\n grid-column: 2;\n display: flex;\n align-items: center;\n border: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .checkBoxLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr auto; }\n #actionTabs .tabs .panes .pane .checkBoxLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox {\n grid-column: 2;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .lbl {\n position: relative;\n display: block;\n height: 14px;\n width: 34px;\n margin-right: 5px;\n background: #898989;\n border-radius: 100px;\n cursor: pointer;\n transition: all 0.3s ease; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .lbl:after {\n position: absolute;\n left: 3px;\n top: 2px;\n display: block;\n width: 10px;\n height: 10px;\n border-radius: 100px;\n background: #fff;\n box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.05);\n content: '';\n transition: all 0.15s ease; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .lbl:active:after {\n transform: scale(1.15, 0.85); }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .cbx:checked ~ label {\n background: #337ab7; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .cbx:checked ~ label:after {\n left: 20px;\n background: #164975; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .hidden {\n display: none; }\n #actionTabs .tabs .panes .pane .textureLine {\n display: grid;\n grid-template-rows: 30px auto; }\n #actionTabs .tabs .panes .pane .textureLine .control {\n margin-top: 2px;\n grid-row: 1;\n display: grid;\n grid-template-columns: 1fr 40px 40px 40px 40px 40px 1fr; }\n #actionTabs .tabs .panes .pane .textureLine .control .red {\n grid-column: 2; }\n #actionTabs .tabs .panes .pane .textureLine .control .green {\n grid-column: 3; }\n #actionTabs .tabs .panes .pane .textureLine .control .blue {\n grid-column: 4; }\n #actionTabs .tabs .panes .pane .textureLine .control .alpha {\n grid-column: 5; }\n #actionTabs .tabs .panes .pane .textureLine .control .all {\n grid-column: 6; }\n #actionTabs .tabs .panes .pane .textureLine .control3D {\n margin-top: 2px;\n grid-row: 1;\n display: grid;\n grid-template-columns: 1fr 40px 40px 40px 40px 40px 40px 1fr; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .px {\n grid-column: 2; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .nx {\n grid-column: 3; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .py {\n grid-column: 4; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .ny {\n grid-column: 5; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .pz {\n grid-column: 6; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .nz {\n grid-column: 7; }\n #actionTabs .tabs .panes .pane .textureLine .command {\n border: 1px solid transparent;\n background: transparent;\n color: white; }\n #actionTabs .tabs .panes .pane .textureLine .selected {\n border: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .textureLine .preview {\n grid-row: 2;\n display: grid;\n align-self: center;\n justify-self: center;\n height: 256px;\n width: 256px;\n margin-top: 5px;\n margin-bottom: 5px;\n border: 1px solid white;\n background-size: 32px 32px;\n background-color: white;\n background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 2'%3E%3Cpath fill='rgba(1.0,1.0,1.0,0.3)' fill-rule='evenodd' d='M0 0h1v1H0V0zm1 1h1v1H1V1z'/%3E%3C/svg%3E\"); }\n #actionTabs .tabs .panes .pane .gltf-extension-property {\n margin-left: 30px;\n border-left: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .floatLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr 120px; }\n #actionTabs .tabs .panes .pane .floatLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .floatLine .value {\n grid-column: 2;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .floatLine .value input {\n width: 110px; }\n #actionTabs .tabs .panes .pane .sliderLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-rows: 100%;\n grid-template-columns: 1fr 50px; }\n #actionTabs .tabs .panes .pane .sliderLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .sliderLine .withMargins {\n margin-left: 5px; }\n #actionTabs .tabs .panes .pane .sliderLine .floatLine {\n padding-left: 2px; }\n #actionTabs .tabs .panes .pane .sliderLine .floatLine .short {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .sliderLine .floatLine .short input {\n width: 35px; }\n #actionTabs .tabs .panes .pane .sliderLine .floatLine .short input::-webkit-outer-spin-button,\n #actionTabs .tabs .panes .pane .sliderLine .floatLine .short input::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0; }\n #actionTabs .tabs .panes .pane .sliderLine .floatLine .short input[type=number] {\n -moz-appearance: textfield; }\n #actionTabs .tabs .panes .pane .sliderLine .slider {\n grid-column: 3;\n grid-row: 1;\n margin-right: 5px;\n width: 90%;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .sliderLine .slider .range {\n -webkit-appearance: none;\n width: 120px;\n height: 6px;\n background: #d3d3d3;\n border-radius: 5px;\n outline: none;\n opacity: 0.7;\n -webkit-transition: .2s;\n transition: opacity .2s; }\n #actionTabs .tabs .panes .pane .sliderLine .slider .range:hover {\n opacity: 1; }\n #actionTabs .tabs .panes .pane .sliderLine .slider .range::-webkit-slider-thumb {\n -webkit-appearance: none;\n appearance: none;\n width: 14px;\n height: 14px;\n border-radius: 50%;\n background: #337ab7;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .sliderLine .slider .range::-moz-range-thumb {\n width: 14px;\n height: 14px;\n border-radius: 50%;\n background: #337ab7;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .color3Line {\n padding-left: 2px;\n display: grid; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine {\n height: 30px;\n display: grid;\n grid-template-columns: 1fr auto 20px 20px; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .color3 {\n grid-column: 2;\n width: 50px;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .color3 input[type=\"color\"] {\n -webkit-appearance: none;\n border: 1px solid rgba(255, 255, 255, 0.5);\n padding: 0;\n width: 30px;\n height: 20px; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .color3 input[type=\"color\"]::-webkit-color-swatch-wrapper {\n padding: 0; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .color3 input[type=\"color\"]::-webkit-color-swatch {\n border: none; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .color3 input {\n margin-right: 5px; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .copy {\n grid-column: 3;\n display: grid;\n align-items: center;\n justify-items: center;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .copy img {\n height: 100%; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .expand {\n grid-column: 4;\n display: grid;\n align-items: center;\n justify-items: center;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .color3Line .secondLine {\n display: grid;\n padding-right: 5px;\n border-left: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .color3Line .secondLine .numeric {\n display: grid;\n grid-template-columns: 1fr auto; }\n #actionTabs .tabs .panes .pane .color3Line .secondLine .numeric-label {\n text-align: right;\n grid-column: 1;\n display: flex;\n align-items: center;\n justify-self: right;\n margin-right: 10px; }\n #actionTabs .tabs .panes .pane .color3Line .secondLine .numeric-value {\n width: 120px;\n grid-column: 2;\n display: flex;\n align-items: center;\n border: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .listLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr auto; }\n #actionTabs .tabs .panes .pane .listLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .listLine .options {\n grid-column: 2;\n display: flex;\n align-items: center;\n margin-right: 5px; }\n #actionTabs .tabs .panes .pane .listLine .options select {\n width: 115px; }\n #actionTabs .tabs .panes .pane .paneContainer {\n margin-top: 3px;\n display: grid;\n grid-template-rows: 100%;\n grid-template-columns: 100%; }\n #actionTabs .tabs .panes .pane .paneContainer .paneList {\n border-left: 3px solid transparent; }\n #actionTabs .tabs .panes .pane .paneContainer:hover .paneList {\n border-left: 3px solid rgba(51, 122, 183, 0.8); }\n #actionTabs .tabs .panes .pane .paneContainer:hover .paneContainer-content .header .title {\n border-left: 3px solid #337ab7; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-highlight-border {\n grid-row: 1;\n grid-column: 1;\n opacity: 1;\n border: 3px solid red;\n margin-bottom: -5px;\n z-index: 100;\n transition: opacity 250ms;\n pointer-events: none; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-highlight-border.transparent {\n opacity: 0; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content {\n grid-row: 1;\n grid-column: 1; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .header {\n display: grid;\n grid-template-columns: 1fr auto;\n background: #555555;\n height: 30px;\n padding-right: 5px;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .header .title {\n border-left: 3px solid transparent;\n padding-left: 5px;\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .header .collapse {\n grid-column: 2;\n display: flex;\n align-items: center;\n justify-items: center;\n transform-origin: center; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .header .collapse.closed {\n transform: rotate(180deg); }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .paneList > div:not(:last-child) {\n border-bottom: 0.5px solid rgba(255, 255, 255, 0.1); }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .fragment > div:not(:last-child) {\n border-bottom: 0.5px solid rgba(255, 255, 255, 0.1); }\n", ""]);
|
11145
|
+
exports.push([module.i, "#inspector-host {\n position: absolute;\n right: 0px;\n top: 0px;\n bottom: 0px; }\n\n#__resizable_base__ {\n display: none; }\n\n#actionTabs {\n background: #333333;\n height: 100%;\n margin: 0;\n padding: 0;\n display: grid;\n grid-template-rows: auto 1fr;\n font: 14px \"Arial\";\n overflow: hidden; }\n #actionTabs .hoverIcon:hover {\n opacity: 0.8; }\n #actionTabs #header {\n height: 30px;\n font-size: 16px;\n color: white;\n background: #222222;\n grid-row: 1;\n text-align: center;\n display: grid;\n grid-template-columns: 30px 1fr 50px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n #actionTabs #header #logo {\n grid-column: 1;\n width: 24px;\n height: 24px;\n display: flex;\n align-self: center;\n justify-self: center; }\n #actionTabs #header #back {\n grid-column: 1;\n display: grid;\n align-self: center;\n justify-self: center;\n cursor: pointer; }\n #actionTabs #header #title {\n grid-column: 2;\n display: grid;\n align-items: center;\n text-align: center; }\n #actionTabs #header #commands {\n grid-column: 3;\n display: grid;\n align-items: center;\n grid-template-columns: 1fr 1fr; }\n #actionTabs #header #commands .expand {\n grid-column: 1;\n display: grid;\n align-items: center;\n justify-items: center;\n cursor: pointer; }\n #actionTabs #header #commands .close {\n grid-column: 2;\n display: grid;\n align-items: center;\n justify-items: center;\n cursor: pointer; }\n #actionTabs .tabs {\n display: grid;\n grid-row: 2;\n grid-template-rows: 40px 1fr;\n font: 14px \"Arial\";\n overflow: hidden; }\n #actionTabs .tabs .labels {\n grid-row: 1;\n display: flex;\n align-items: center;\n justify-items: center;\n border-bottom: 1px solid #ffffff;\n margin: 0;\n padding: 0; }\n #actionTabs .tabs .labels .label {\n font-size: 24px;\n color: white;\n width: 40px;\n display: flex;\n align-content: center;\n justify-content: center;\n border: 1px solid transparent;\n border-bottom: none;\n background: #333333;\n padding: 5px;\n height: 28px;\n cursor: pointer; }\n #actionTabs .tabs .labels .label.active {\n border-color: #ffffff;\n border-bottom: 2px solid transparent;\n margin-bottom: -2px; }\n #actionTabs .tabs .panes {\n grid-row: 2;\n display: grid;\n grid-template-rows: 100%;\n overflow: hidden; }\n #actionTabs .tabs .panes .infoMessage {\n opacity: 0.5;\n color: white;\n margin: 15px 5px 0px 5px; }\n #actionTabs .tabs .panes .gradient-step {\n display: grid;\n grid-template-rows: 100%;\n grid-template-columns: 20px 30px 40px auto 20px 30px;\n padding-top: 5px;\n padding-left: 5px;\n padding-bottom: 5px;\n align-items: center; }\n #actionTabs .tabs .panes .gradient-step .step {\n grid-row: 1;\n grid-column: 1; }\n #actionTabs .tabs .panes .gradient-step .color1 {\n height: 100%; }\n #actionTabs .tabs .panes .gradient-step .color2 {\n height: 100%;\n padding-left: 5px; }\n #actionTabs .tabs .panes .gradient-step .factor1 {\n grid-row: 1;\n grid-column: 2;\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .factor2 {\n padding-left: 5px;\n grid-row: 1;\n grid-column: 3;\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .factor2 .grayed {\n background: gray;\n border-color: gray; }\n #actionTabs .tabs .panes .gradient-step .numeric-input {\n width: calc(100% - 5px); }\n #actionTabs .tabs .panes .gradient-step .icon {\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .step-value {\n margin-left: 5px;\n grid-row: 1;\n grid-column: 3;\n text-align: right;\n margin-right: 5px; }\n #actionTabs .tabs .panes .gradient-step .step-slider {\n grid-row: 1;\n grid-column: 4;\n display: grid;\n justify-content: stretch;\n align-content: center;\n margin-right: 12px; }\n #actionTabs .tabs .panes .gradient-step .step-slider input {\n width: 100%; }\n #actionTabs .tabs .panes .gradient-step .step-slider .range:hover {\n opacity: 1; }\n #actionTabs .tabs .panes .gradient-step .step-slider .range {\n -webkit-appearance: none;\n height: 6px;\n background: #d3d3d3;\n border-radius: 5px;\n outline: none;\n opacity: 0.7;\n -webkit-transition: .2s;\n transition: opacity .2s; }\n #actionTabs .tabs .panes .gradient-step .step-slider .range::-webkit-slider-thumb {\n -webkit-appearance: none;\n appearance: none;\n width: 14px;\n height: 14px;\n border-radius: 50%;\n background: #337ab7;\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .step-slider .range::-moz-range-thumb {\n width: 14px;\n height: 14px;\n border-radius: 50%;\n background: #337ab7;\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .gradient-copy {\n grid-row: 1;\n grid-column: 5;\n display: grid;\n align-content: center;\n justify-content: center; }\n #actionTabs .tabs .panes .gradient-step .gradient-copy .img {\n height: 20px;\n width: 20px; }\n #actionTabs .tabs .panes .gradient-step .gradient-copy .img:hover {\n cursor: pointer; }\n #actionTabs .tabs .panes .gradient-step .gradient-delete {\n grid-row: 1;\n grid-column: 6;\n display: grid;\n align-content: center;\n justify-content: center; }\n #actionTabs .tabs .panes .gradient-step .gradient-delete .img {\n height: 20px;\n width: 20px; }\n #actionTabs .tabs .panes .gradient-step .gradient-delete .img:hover {\n cursor: pointer; }\n #actionTabs .tabs .panes .pane {\n color: white;\n overflow-x: hidden;\n overflow-y: auto;\n height: 100%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none; }\n #actionTabs .tabs .panes .pane .animation-info {\n border-left: greenyellow 3px solid;\n margin-left: 5px;\n padding-left: 5px !important; }\n #actionTabs .tabs .panes .pane .underline {\n border-bottom: 0.5px solid rgba(255, 255, 255, 0.5); }\n #actionTabs .tabs .panes .pane .textureLinkLine {\n display: grid;\n grid-template-columns: auto 1fr; }\n #actionTabs .tabs .panes .pane .textureLinkLine .debug {\n grid-column: 1;\n margin-left: 5px;\n margin-right: 5px;\n display: block;\n align-items: center;\n justify-items: center;\n cursor: pointer;\n opacity: 0.5; }\n #actionTabs .tabs .panes .pane .textureLinkLine .debug.selected {\n opacity: 1.0; }\n #actionTabs .tabs .panes .pane .textureLinkLine .textLine {\n grid-column: 2; }\n #actionTabs .tabs .panes .pane .textureLinkLine .actionIcon {\n display: inline-block;\n margin-top: 6px;\n margin-right: 4px; }\n #actionTabs .tabs .panes .pane .messageLine {\n text-align: center;\n font-size: 12px;\n font-style: italic;\n opacity: 0.6; }\n #actionTabs .tabs .panes .pane .iconMessageLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 30px 1fr; }\n #actionTabs .tabs .panes .pane .iconMessageLine .icon {\n grid-column: 1;\n display: grid;\n align-items: center;\n justify-items: center; }\n #actionTabs .tabs .panes .pane .iconMessageLine .value {\n grid-column: 2;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .color-picker {\n height: calc(100% - 8px);\n margin: 4px;\n width: 100%; }\n #actionTabs .tabs .panes .pane .color-picker .color-rect {\n height: calc(100% - 4px);\n border: 2px white solid;\n cursor: pointer;\n min-height: 18px; }\n #actionTabs .tabs .panes .pane .color-picker .color-picker-cover {\n position: fixed;\n top: 0px;\n right: 0px;\n bottom: 0px;\n left: 0px;\n z-index: 100; }\n #actionTabs .tabs .panes .pane .color-picker .color-picker-float {\n position: absolute; }\n #actionTabs .tabs .panes .pane .linkButtonLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr auto 20px; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link {\n grid-column: 1;\n display: flex;\n align-items: center;\n text-decoration: underline;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-button {\n grid-column: 2; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-button button {\n background: #222222;\n border: 1px solid #337ab7;\n margin: 5px 10px 5px 10px;\n color: white;\n padding: 4px 5px;\n opacity: 0.9;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-button button:hover {\n opacity: 1.0; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-button button:active {\n background: #282828; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-button button:focus {\n border: 1px solid #337ab7;\n outline: 0px; }\n #actionTabs .tabs .panes .pane .linkButtonLine .link-icon {\n grid-column: 3;\n display: grid;\n align-content: center; }\n #actionTabs .tabs .panes .pane .textLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr auto; }\n #actionTabs .tabs .panes .pane .textLine.indented {\n grid-template-columns: 100%; }\n #actionTabs .tabs .panes .pane .textLine.indented .link-value {\n grid-column: 1;\n text-align: start;\n margin-left: 20px;\n opacity: 0.6;\n max-width: unset; }\n #actionTabs .tabs .panes .pane .textLine.indented .value {\n grid-column: 1;\n text-align: start;\n margin-left: 20px;\n opacity: 0.6;\n max-width: unset; }\n #actionTabs .tabs .panes .pane .textLine.reduced-opacity {\n opacity: 0.6;\n padding-left: 25px; }\n #actionTabs .tabs .panes .pane .textLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .textLine .link-value {\n grid-column: 2;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n text-align: end;\n opacity: 0.8;\n margin: 5px;\n margin-top: 7px;\n max-width: 140px;\n text-decoration: underline;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .textLine .value {\n grid-column: 2;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n text-align: end;\n opacity: 0.8;\n margin: 5px;\n margin-top: 7px;\n max-width: 200px;\n -webkit-user-select: text;\n -moz-user-select: text;\n -ms-user-select: text;\n user-select: text; }\n #actionTabs .tabs .panes .pane .textLine .value.check {\n color: green; }\n #actionTabs .tabs .panes .pane .textLine .value.uncheck {\n color: red; }\n #actionTabs .tabs .panes .pane .gradient-container {\n margin-top: 3px; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-label {\n height: 30px;\n display: grid;\n align-content: center; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step {\n display: grid;\n grid-template-rows: 100%;\n grid-template-columns: 25px 50px 55px 40px auto 20px 5px;\n padding-top: 5px;\n padding-left: 5px;\n padding-bottom: 5px;\n align-items: center;\n border-left: orange 3px solid; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .step {\n grid-row: 1;\n grid-column: 1; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .color1 {\n height: 100%; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .color2 {\n height: 100%;\n padding-left: 5px; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .factor1 {\n grid-row: 1;\n grid-column: 2;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .factor2 {\n padding-left: 5px;\n grid-row: 1;\n grid-column: 3;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .factor2 .grayed {\n background: gray;\n border-color: gray; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .numeric-input {\n width: calc(100% - 5px); }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .step-value {\n margin-left: 5px;\n grid-row: 1;\n grid-column: 4;\n text-align: right;\n margin-right: 5px; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .step-slider {\n grid-row: 1;\n grid-column: 5;\n display: grid;\n justify-content: stretch;\n align-content: center;\n margin-right: 5px; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .step-slider input {\n width: 100%; }\n #actionTabs .tabs .panes .pane .gradient-container .gradient-step .gradient-delete {\n grid-row: 1;\n grid-column: 6;\n display: grid;\n align-content: center;\n justify-content: center; }\n #actionTabs .tabs .panes .pane .textInputLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr 120px; }\n #actionTabs .tabs .panes .pane .textInputLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .textInputLine .value {\n display: flex;\n align-items: center;\n grid-column: 2; }\n #actionTabs .tabs .panes .pane .textInputLine .value input {\n width: 110px; }\n #actionTabs .tabs .panes .pane .buttonLine {\n height: 30px;\n display: grid;\n align-items: center;\n justify-items: stretch; }\n #actionTabs .tabs .panes .pane .buttonLine input[type=\"file\"] {\n display: none; }\n #actionTabs .tabs .panes .pane .buttonLine .file-upload {\n background: #222222;\n border: 1px solid #337ab7;\n margin: 5px 10px 5px 10px;\n color: white;\n padding: 4px 5px;\n font-size: 13px;\n opacity: 0.9;\n cursor: pointer;\n text-align: center; }\n #actionTabs .tabs .panes .pane .buttonLine .file-upload:hover {\n opacity: 1.0; }\n #actionTabs .tabs .panes .pane .buttonLine .file-upload:active {\n transform: scale(0.98);\n transform-origin: 0.5 0.5; }\n #actionTabs .tabs .panes .pane .buttonLine button {\n background: #222222;\n border: 1px solid #337ab7;\n margin: 5px 10px 5px 10px;\n color: white;\n padding: 4px 5px;\n opacity: 0.9;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .buttonLine button:hover {\n opacity: 1.0; }\n #actionTabs .tabs .panes .pane .buttonLine button:active {\n background: #282828; }\n #actionTabs .tabs .panes .pane .buttonLine button:focus {\n border: 1px solid #337ab7;\n outline: 0px; }\n #actionTabs .tabs .panes .pane .radioLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr 24px; }\n #actionTabs .tabs .panes .pane .radioLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer {\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .radio {\n grid-column: 2;\n display: none; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .radio:checked + label:before {\n border-color: #337ab7; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .radio:checked + label:after {\n transform: scale(1); }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .labelForRadio {\n display: inline-block;\n height: 14px;\n position: relative;\n padding: 0 24px;\n margin-bottom: 0;\n cursor: pointer;\n vertical-align: bottom; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .labelForRadio:before, #actionTabs .tabs .panes .pane .radioLine .radioContainer .labelForRadio:after {\n position: absolute;\n content: '';\n border-radius: 50%;\n transition: all .3s ease;\n transition-property: transform, border-color; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .labelForRadio:before {\n left: 0px;\n top: 0;\n width: 16px;\n height: 16px;\n border: 2px solid white; }\n #actionTabs .tabs .panes .pane .radioLine .radioContainer .labelForRadio:after {\n top: 6px;\n left: 6px;\n width: 8px;\n height: 8px;\n transform: scale(0);\n background: #337ab7; }\n #actionTabs .tabs .panes .pane .vector3Line {\n padding-left: 2px;\n display: grid; }\n #actionTabs .tabs .panes .pane .vector3Line .firstLine {\n display: grid;\n grid-template-columns: 1fr auto 20px;\n height: 30px; }\n #actionTabs .tabs .panes .pane .vector3Line .firstLine .label {\n grid-column: 1;\n display: flex;\n align-items: center;\n white-space: nowrap;\n overflow: hidden; }\n #actionTabs .tabs .panes .pane .vector3Line .firstLine .vector {\n grid-column: 2;\n display: flex;\n align-items: center;\n text-align: right;\n opacity: 0.8;\n padding-left: 5px; }\n #actionTabs .tabs .panes .pane .vector3Line .firstLine .expand {\n grid-column: 3;\n display: grid;\n align-items: center;\n justify-items: center;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .vector3Line .secondLine {\n display: grid;\n padding-right: 5px;\n border-left: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .vector3Line .secondLine .numeric {\n display: grid;\n grid-template-columns: 1fr auto; }\n #actionTabs .tabs .panes .pane .vector3Line .secondLine .numeric-label {\n text-align: right;\n grid-column: 1;\n display: flex;\n align-items: center;\n justify-self: right;\n margin-right: 10px; }\n #actionTabs .tabs .panes .pane .vector3Line .secondLine .numeric-value {\n width: 120px;\n grid-column: 2;\n display: flex;\n align-items: center;\n border: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .checkBoxLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr auto; }\n #actionTabs .tabs .panes .pane .checkBoxLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox {\n grid-column: 2;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .lbl {\n position: relative;\n display: block;\n height: 14px;\n width: 34px;\n margin-right: 5px;\n background: #898989;\n border-radius: 100px;\n cursor: pointer;\n transition: all 0.3s ease; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .lbl:after {\n position: absolute;\n left: 3px;\n top: 2px;\n display: block;\n width: 10px;\n height: 10px;\n border-radius: 100px;\n background: #fff;\n box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.05);\n content: '';\n transition: all 0.15s ease; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .lbl:active:after {\n transform: scale(1.15, 0.85); }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .cbx:checked ~ label {\n background: #337ab7; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .cbx:checked ~ label:after {\n left: 20px;\n background: #164975; }\n #actionTabs .tabs .panes .pane .checkBoxLine .checkBox .hidden {\n display: none; }\n #actionTabs .tabs .panes .pane .textureLine {\n display: grid;\n grid-template-rows: 30px auto; }\n #actionTabs .tabs .panes .pane .textureLine .control {\n margin-top: 2px;\n grid-row: 1;\n display: grid;\n grid-template-columns: 1fr 40px 40px 40px 40px 40px 1fr; }\n #actionTabs .tabs .panes .pane .textureLine .control .red {\n grid-column: 2; }\n #actionTabs .tabs .panes .pane .textureLine .control .green {\n grid-column: 3; }\n #actionTabs .tabs .panes .pane .textureLine .control .blue {\n grid-column: 4; }\n #actionTabs .tabs .panes .pane .textureLine .control .alpha {\n grid-column: 5; }\n #actionTabs .tabs .panes .pane .textureLine .control .all {\n grid-column: 6; }\n #actionTabs .tabs .panes .pane .textureLine .control3D {\n margin-top: 2px;\n grid-row: 1;\n display: grid;\n grid-template-columns: 1fr 40px 40px 40px 40px 40px 40px 1fr; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .px {\n grid-column: 2; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .nx {\n grid-column: 3; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .py {\n grid-column: 4; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .ny {\n grid-column: 5; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .pz {\n grid-column: 6; }\n #actionTabs .tabs .panes .pane .textureLine .control3D .nz {\n grid-column: 7; }\n #actionTabs .tabs .panes .pane .textureLine .command {\n border: 1px solid transparent;\n background: transparent;\n color: white; }\n #actionTabs .tabs .panes .pane .textureLine .selected {\n border: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .textureLine .preview {\n grid-row: 2;\n display: grid;\n align-self: center;\n justify-self: center;\n height: 256px;\n width: 256px;\n margin-top: 5px;\n margin-bottom: 5px;\n border: 1px solid white;\n background-size: 32px 32px;\n background-color: white;\n background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 2'%3E%3Cpath fill='rgba(1.0,1.0,1.0,0.3)' fill-rule='evenodd' d='M0 0h1v1H0V0zm1 1h1v1H1V1z'/%3E%3C/svg%3E\"); }\n #actionTabs .tabs .panes .pane .gltf-extension-property {\n margin-left: 30px;\n border-left: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .floatLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr 120px; }\n #actionTabs .tabs .panes .pane .floatLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .floatLine .value {\n grid-column: 2;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .floatLine .value input {\n width: 110px; }\n #actionTabs .tabs .panes .pane .sliderLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-rows: 100%;\n grid-template-columns: 1fr 50px; }\n #actionTabs .tabs .panes .pane .sliderLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .sliderLine .withMargins {\n margin-left: 5px; }\n #actionTabs .tabs .panes .pane .sliderLine .floatLine {\n padding-left: 2px; }\n #actionTabs .tabs .panes .pane .sliderLine .floatLine .short {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .sliderLine .floatLine .short input {\n width: 35px; }\n #actionTabs .tabs .panes .pane .sliderLine .floatLine .short input::-webkit-outer-spin-button,\n #actionTabs .tabs .panes .pane .sliderLine .floatLine .short input::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0; }\n #actionTabs .tabs .panes .pane .sliderLine .floatLine .short input[type=number] {\n -moz-appearance: textfield; }\n #actionTabs .tabs .panes .pane .sliderLine .slider {\n grid-column: 3;\n grid-row: 1;\n margin-right: 5px;\n width: 90%;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .sliderLine .slider .range {\n -webkit-appearance: none;\n width: 120px;\n height: 6px;\n background: #d3d3d3;\n border-radius: 5px;\n outline: none;\n opacity: 0.7;\n -webkit-transition: .2s;\n transition: opacity .2s; }\n #actionTabs .tabs .panes .pane .sliderLine .slider .range:hover {\n opacity: 1; }\n #actionTabs .tabs .panes .pane .sliderLine .slider .range::-webkit-slider-thumb {\n -webkit-appearance: none;\n appearance: none;\n width: 14px;\n height: 14px;\n border-radius: 50%;\n background: #337ab7;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .sliderLine .slider .range::-moz-range-thumb {\n width: 14px;\n height: 14px;\n border-radius: 50%;\n background: #337ab7;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .color3Line {\n padding-left: 2px;\n display: grid; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine {\n height: 30px;\n display: grid;\n grid-template-columns: 1fr auto 20px 20px; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .color3 {\n grid-column: 2;\n width: 50px;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .color3 input[type=\"color\"] {\n -webkit-appearance: none;\n border: 1px solid rgba(255, 255, 255, 0.5);\n padding: 0;\n width: 30px;\n height: 20px; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .color3 input[type=\"color\"]::-webkit-color-swatch-wrapper {\n padding: 0; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .color3 input[type=\"color\"]::-webkit-color-swatch {\n border: none; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .color3 input {\n margin-right: 5px; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .copy {\n grid-column: 3;\n display: grid;\n align-items: center;\n justify-items: center;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .copy img {\n height: 100%; }\n #actionTabs .tabs .panes .pane .color3Line .firstLine .expand {\n grid-column: 4;\n display: grid;\n align-items: center;\n justify-items: center;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .color3Line .secondLine {\n display: grid;\n padding-right: 5px;\n border-left: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .color3Line .secondLine .numeric {\n display: grid;\n grid-template-columns: 1fr auto; }\n #actionTabs .tabs .panes .pane .color3Line .secondLine .numeric-label {\n text-align: right;\n grid-column: 1;\n display: flex;\n align-items: center;\n justify-self: right;\n margin-right: 10px; }\n #actionTabs .tabs .panes .pane .color3Line .secondLine .numeric-value {\n width: 120px;\n grid-column: 2;\n display: flex;\n align-items: center;\n border: 1px solid #337ab7; }\n #actionTabs .tabs .panes .pane .listLine {\n padding-left: 2px;\n height: 30px;\n display: grid;\n grid-template-columns: 1fr auto; }\n #actionTabs .tabs .panes .pane .listLine .label {\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .listLine .options {\n grid-column: 2;\n display: flex;\n align-items: center;\n margin-right: 5px; }\n #actionTabs .tabs .panes .pane .listLine .options select {\n width: 115px; }\n #actionTabs .tabs .panes .pane .paneContainer {\n margin-top: 3px;\n display: grid;\n grid-template-rows: 100%;\n grid-template-columns: 100%; }\n #actionTabs .tabs .panes .pane .paneContainer .paneList {\n border-left: 3px solid transparent; }\n #actionTabs .tabs .panes .pane .paneContainer:hover .paneList {\n border-left: 3px solid rgba(51, 122, 183, 0.8); }\n #actionTabs .tabs .panes .pane .paneContainer:hover .paneContainer-content .header .title {\n border-left: 3px solid #337ab7; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-highlight-border {\n grid-row: 1;\n grid-column: 1;\n opacity: 1;\n border: 3px solid red;\n margin-bottom: -5px;\n z-index: 100;\n transition: opacity 250ms;\n pointer-events: none; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-highlight-border.transparent {\n opacity: 0; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content {\n grid-row: 1;\n grid-column: 1; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .header {\n display: grid;\n grid-template-columns: 1fr auto;\n background: #555555;\n height: 30px;\n padding-right: 5px;\n cursor: pointer; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .header .title {\n border-left: 3px solid transparent;\n padding-left: 5px;\n grid-column: 1;\n display: flex;\n align-items: center; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .header .collapse {\n grid-column: 2;\n display: flex;\n align-items: center;\n justify-items: center;\n transform-origin: center; }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .header .collapse.closed {\n transform: rotate(180deg); }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .paneList > div:not(:last-child) {\n border-bottom: 0.5px solid rgba(255, 255, 255, 0.1); }\n #actionTabs .tabs .panes .pane .paneContainer .paneContainer-content .fragment > div:not(:last-child) {\n border-bottom: 0.5px solid rgba(255, 255, 255, 0.1); }\n", ""]);
|
11191
11146
|
// Exports
|
11192
11147
|
module.exports = exports;
|
11193
11148
|
|
@@ -11195,9 +11150,9 @@ module.exports = exports;
|
|
11195
11150
|
/***/ }),
|
11196
11151
|
|
11197
11152
|
/***/ "../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./components/actionTabs/tabs/propertyGrids/materials/textures/textureEditor.scss":
|
11198
|
-
|
11199
|
-
!***
|
11200
|
-
|
11153
|
+
/*!*************************************************************************************************************************************************************************************************************!*\
|
11154
|
+
!*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/cjs.js!E:/Babylon/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/actionTabs/tabs/propertyGrids/materials/textures/textureEditor.scss ***!
|
11155
|
+
\*************************************************************************************************************************************************************************************************************/
|
11201
11156
|
/*! no static exports found */
|
11202
11157
|
/***/ (function(module, exports, __webpack_require__) {
|
11203
11158
|
|
@@ -11213,9 +11168,9 @@ module.exports = exports;
|
|
11213
11168
|
/***/ }),
|
11214
11169
|
|
11215
11170
|
/***/ "../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./components/controls/colorPicker/colorPicker.scss":
|
11216
|
-
|
11217
|
-
!***
|
11218
|
-
|
11171
|
+
/*!*******************************************************************************************************************************************************************************!*\
|
11172
|
+
!*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/cjs.js!E:/Babylon/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/controls/colorPicker/colorPicker.scss ***!
|
11173
|
+
\*******************************************************************************************************************************************************************************/
|
11219
11174
|
/*! no static exports found */
|
11220
11175
|
/***/ (function(module, exports, __webpack_require__) {
|
11221
11176
|
|
@@ -11231,9 +11186,9 @@ module.exports = exports;
|
|
11231
11186
|
/***/ }),
|
11232
11187
|
|
11233
11188
|
/***/ "../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./components/embedHost/embedHost.scss":
|
11234
|
-
|
11235
|
-
!***
|
11236
|
-
|
11189
|
+
/*!******************************************************************************************************************************************************************!*\
|
11190
|
+
!*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/cjs.js!E:/Babylon/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/embedHost/embedHost.scss ***!
|
11191
|
+
\******************************************************************************************************************************************************************/
|
11237
11192
|
/*! no static exports found */
|
11238
11193
|
/***/ (function(module, exports, __webpack_require__) {
|
11239
11194
|
|
@@ -11249,9 +11204,9 @@ module.exports = exports;
|
|
11249
11204
|
/***/ }),
|
11250
11205
|
|
11251
11206
|
/***/ "../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/sass-loader/dist/cjs.js!./components/sceneExplorer/sceneExplorer.scss":
|
11252
|
-
|
11253
|
-
!***
|
11254
|
-
|
11207
|
+
/*!**************************************************************************************************************************************************************************!*\
|
11208
|
+
!*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/cjs.js!E:/Babylon/Babylon.js/node_modules/sass-loader/dist/cjs.js!./components/sceneExplorer/sceneExplorer.scss ***!
|
11209
|
+
\**************************************************************************************************************************************************************************/
|
11255
11210
|
/*! no static exports found */
|
11256
11211
|
/***/ (function(module, exports, __webpack_require__) {
|
11257
11212
|
|
@@ -11267,9 +11222,9 @@ module.exports = exports;
|
|
11267
11222
|
/***/ }),
|
11268
11223
|
|
11269
11224
|
/***/ "../../../../node_modules/css-loader/dist/runtime/api.js":
|
11270
|
-
|
11271
|
-
!***
|
11272
|
-
|
11225
|
+
/*!*************************************************************************!*\
|
11226
|
+
!*** E:/Babylon/Babylon.js/node_modules/css-loader/dist/runtime/api.js ***!
|
11227
|
+
\*************************************************************************/
|
11273
11228
|
/*! no static exports found */
|
11274
11229
|
/***/ (function(module, exports, __webpack_require__) {
|
11275
11230
|
|
@@ -11372,9 +11327,9 @@ function toComment(sourceMap) {
|
|
11372
11327
|
/***/ }),
|
11373
11328
|
|
11374
11329
|
/***/ "../../../../node_modules/gif.js.optimized/dist/gif.js":
|
11375
|
-
|
11376
|
-
!***
|
11377
|
-
|
11330
|
+
/*!***********************************************************************!*\
|
11331
|
+
!*** E:/Babylon/Babylon.js/node_modules/gif.js.optimized/dist/gif.js ***!
|
11332
|
+
\***********************************************************************/
|
11378
11333
|
/*! no static exports found */
|
11379
11334
|
/***/ (function(module, exports, __webpack_require__) {
|
11380
11335
|
|
@@ -11384,9 +11339,9 @@ function toComment(sourceMap) {
|
|
11384
11339
|
/***/ }),
|
11385
11340
|
|
11386
11341
|
/***/ "../../../../node_modules/object-assign/index.js":
|
11387
|
-
|
11388
|
-
!***
|
11389
|
-
|
11342
|
+
/*!*****************************************************************!*\
|
11343
|
+
!*** E:/Babylon/Babylon.js/node_modules/object-assign/index.js ***!
|
11344
|
+
\*****************************************************************/
|
11390
11345
|
/*! no static exports found */
|
11391
11346
|
/***/ (function(module, exports, __webpack_require__) {
|
11392
11347
|
|
@@ -11486,9 +11441,9 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
11486
11441
|
/***/ }),
|
11487
11442
|
|
11488
11443
|
/***/ "../../../../node_modules/process/browser.js":
|
11489
|
-
|
11490
|
-
!***
|
11491
|
-
|
11444
|
+
/*!*************************************************************!*\
|
11445
|
+
!*** E:/Babylon/Babylon.js/node_modules/process/browser.js ***!
|
11446
|
+
\*************************************************************/
|
11492
11447
|
/*! no static exports found */
|
11493
11448
|
/***/ (function(module, exports) {
|
11494
11449
|
|
@@ -11681,9 +11636,9 @@ process.umask = function() { return 0; };
|
|
11681
11636
|
/***/ }),
|
11682
11637
|
|
11683
11638
|
/***/ "../../../../node_modules/prop-types/checkPropTypes.js":
|
11684
|
-
|
11685
|
-
!***
|
11686
|
-
|
11639
|
+
/*!***********************************************************************!*\
|
11640
|
+
!*** E:/Babylon/Babylon.js/node_modules/prop-types/checkPropTypes.js ***!
|
11641
|
+
\***********************************************************************/
|
11687
11642
|
/*! no static exports found */
|
11688
11643
|
/***/ (function(module, exports, __webpack_require__) {
|
11689
11644
|
|
@@ -11795,9 +11750,9 @@ module.exports = checkPropTypes;
|
|
11795
11750
|
/***/ }),
|
11796
11751
|
|
11797
11752
|
/***/ "../../../../node_modules/prop-types/factoryWithTypeCheckers.js":
|
11798
|
-
|
11799
|
-
!***
|
11800
|
-
|
11753
|
+
/*!********************************************************************************!*\
|
11754
|
+
!*** E:/Babylon/Babylon.js/node_modules/prop-types/factoryWithTypeCheckers.js ***!
|
11755
|
+
\********************************************************************************/
|
11801
11756
|
/*! no static exports found */
|
11802
11757
|
/***/ (function(module, exports, __webpack_require__) {
|
11803
11758
|
|
@@ -12398,9 +12353,9 @@ module.exports = function(isValidElement, throwOnDirectAccess) {
|
|
12398
12353
|
/***/ }),
|
12399
12354
|
|
12400
12355
|
/***/ "../../../../node_modules/prop-types/index.js":
|
12401
|
-
|
12402
|
-
!***
|
12403
|
-
|
12356
|
+
/*!**************************************************************!*\
|
12357
|
+
!*** E:/Babylon/Babylon.js/node_modules/prop-types/index.js ***!
|
12358
|
+
\**************************************************************/
|
12404
12359
|
/*! no static exports found */
|
12405
12360
|
/***/ (function(module, exports, __webpack_require__) {
|
12406
12361
|
|
@@ -12424,9 +12379,9 @@ if (true) {
|
|
12424
12379
|
/***/ }),
|
12425
12380
|
|
12426
12381
|
/***/ "../../../../node_modules/prop-types/lib/ReactPropTypesSecret.js":
|
12427
|
-
|
12428
|
-
!***
|
12429
|
-
|
12382
|
+
/*!*********************************************************************************!*\
|
12383
|
+
!*** E:/Babylon/Babylon.js/node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
|
12384
|
+
\*********************************************************************************/
|
12430
12385
|
/*! no static exports found */
|
12431
12386
|
/***/ (function(module, exports, __webpack_require__) {
|
12432
12387
|
|
@@ -12448,9 +12403,9 @@ module.exports = ReactPropTypesSecret;
|
|
12448
12403
|
/***/ }),
|
12449
12404
|
|
12450
12405
|
/***/ "../../../../node_modules/react-contextmenu/es6/AbstractMenu.js":
|
12451
|
-
|
12452
|
-
!***
|
12453
|
-
|
12406
|
+
/*!********************************************************************************!*\
|
12407
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/AbstractMenu.js ***!
|
12408
|
+
\********************************************************************************/
|
12454
12409
|
/*! exports provided: default */
|
12455
12410
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
12456
12411
|
|
@@ -12674,9 +12629,9 @@ var _initialiseProps = function _initialiseProps() {
|
|
12674
12629
|
/***/ }),
|
12675
12630
|
|
12676
12631
|
/***/ "../../../../node_modules/react-contextmenu/es6/ContextMenu.js":
|
12677
|
-
|
12678
|
-
!***
|
12679
|
-
|
12632
|
+
/*!*******************************************************************************!*\
|
12633
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/ContextMenu.js ***!
|
12634
|
+
\*******************************************************************************/
|
12680
12635
|
/*! exports provided: default */
|
12681
12636
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
12682
12637
|
|
@@ -12991,9 +12946,9 @@ ContextMenu.defaultProps = {
|
|
12991
12946
|
/***/ }),
|
12992
12947
|
|
12993
12948
|
/***/ "../../../../node_modules/react-contextmenu/es6/ContextMenuTrigger.js":
|
12994
|
-
|
12995
|
-
!***
|
12996
|
-
|
12949
|
+
/*!**************************************************************************************!*\
|
12950
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/ContextMenuTrigger.js ***!
|
12951
|
+
\**************************************************************************************/
|
12997
12952
|
/*! exports provided: default */
|
12998
12953
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
12999
12954
|
|
@@ -13191,9 +13146,9 @@ ContextMenuTrigger.defaultProps = {
|
|
13191
13146
|
/***/ }),
|
13192
13147
|
|
13193
13148
|
/***/ "../../../../node_modules/react-contextmenu/es6/MenuItem.js":
|
13194
|
-
|
13195
|
-
!***
|
13196
|
-
|
13149
|
+
/*!****************************************************************************!*\
|
13150
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/MenuItem.js ***!
|
13151
|
+
\****************************************************************************/
|
13197
13152
|
/*! exports provided: default */
|
13198
13153
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
13199
13154
|
|
@@ -13331,9 +13286,9 @@ MenuItem.defaultProps = {
|
|
13331
13286
|
/***/ }),
|
13332
13287
|
|
13333
13288
|
/***/ "../../../../node_modules/react-contextmenu/es6/SubMenu.js":
|
13334
|
-
|
13335
|
-
!***
|
13336
|
-
|
13289
|
+
/*!***************************************************************************!*\
|
13290
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/SubMenu.js ***!
|
13291
|
+
\***************************************************************************/
|
13337
13292
|
/*! exports provided: default */
|
13338
13293
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
13339
13294
|
|
@@ -13671,9 +13626,9 @@ SubMenu.defaultProps = {
|
|
13671
13626
|
/***/ }),
|
13672
13627
|
|
13673
13628
|
/***/ "../../../../node_modules/react-contextmenu/es6/actions.js":
|
13674
|
-
|
13675
|
-
!***
|
13676
|
-
|
13629
|
+
/*!***************************************************************************!*\
|
13630
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/actions.js ***!
|
13631
|
+
\***************************************************************************/
|
13677
13632
|
/*! exports provided: MENU_SHOW, MENU_HIDE, dispatchGlobalEvent, showMenu, hideMenu */
|
13678
13633
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
13679
13634
|
|
@@ -13731,9 +13686,9 @@ function hideMenu() {
|
|
13731
13686
|
/***/ }),
|
13732
13687
|
|
13733
13688
|
/***/ "../../../../node_modules/react-contextmenu/es6/connectMenu.js":
|
13734
|
-
|
13735
|
-
!***
|
13736
|
-
|
13689
|
+
/*!*******************************************************************************!*\
|
13690
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/connectMenu.js ***!
|
13691
|
+
\*******************************************************************************/
|
13737
13692
|
/*! exports provided: default */
|
13738
13693
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
13739
13694
|
|
@@ -13829,9 +13784,9 @@ var ignoredTriggerProps = [].concat(_toConsumableArray(Object.keys(_ContextMenuT
|
|
13829
13784
|
/***/ }),
|
13830
13785
|
|
13831
13786
|
/***/ "../../../../node_modules/react-contextmenu/es6/globalEventListener.js":
|
13832
|
-
|
13833
|
-
!***
|
13834
|
-
|
13787
|
+
/*!***************************************************************************************!*\
|
13788
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/globalEventListener.js ***!
|
13789
|
+
\***************************************************************************************/
|
13835
13790
|
/*! exports provided: default */
|
13836
13791
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
13837
13792
|
|
@@ -13891,9 +13846,9 @@ var GlobalEventListener = function GlobalEventListener() {
|
|
13891
13846
|
/***/ }),
|
13892
13847
|
|
13893
13848
|
/***/ "../../../../node_modules/react-contextmenu/es6/helpers.js":
|
13894
|
-
|
13895
|
-
!***
|
13896
|
-
|
13849
|
+
/*!***************************************************************************!*\
|
13850
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/helpers.js ***!
|
13851
|
+
\***************************************************************************/
|
13897
13852
|
/*! exports provided: callIfExists, hasOwnProp, uniqueId, cssClasses, store, canUseDOM */
|
13898
13853
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
13899
13854
|
|
@@ -13940,9 +13895,9 @@ var canUseDOM = Boolean(typeof window !== 'undefined' && window.document && wind
|
|
13940
13895
|
/***/ }),
|
13941
13896
|
|
13942
13897
|
/***/ "../../../../node_modules/react-contextmenu/es6/index.js":
|
13943
|
-
|
13944
|
-
!***
|
13945
|
-
|
13898
|
+
/*!*************************************************************************!*\
|
13899
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-contextmenu/es6/index.js ***!
|
13900
|
+
\*************************************************************************/
|
13946
13901
|
/*! exports provided: ContextMenu, ContextMenuTrigger, MenuItem, SubMenu, connectMenu, hideMenu, showMenu */
|
13947
13902
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
13948
13903
|
|
@@ -13978,9 +13933,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
13978
13933
|
/***/ }),
|
13979
13934
|
|
13980
13935
|
/***/ "../../../../node_modules/react-dom/cjs/react-dom.development.js":
|
13981
|
-
|
13982
|
-
!***
|
13983
|
-
|
13936
|
+
/*!*********************************************************************************!*\
|
13937
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-dom/cjs/react-dom.development.js ***!
|
13938
|
+
\*********************************************************************************/
|
13984
13939
|
/*! no static exports found */
|
13985
13940
|
/***/ (function(module, exports, __webpack_require__) {
|
13986
13941
|
|
@@ -39002,9 +38957,9 @@ exports.version = ReactVersion;
|
|
39002
38957
|
/***/ }),
|
39003
38958
|
|
39004
38959
|
/***/ "../../../../node_modules/react-dom/index.js":
|
39005
|
-
|
39006
|
-
!***
|
39007
|
-
|
38960
|
+
/*!*************************************************************!*\
|
38961
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-dom/index.js ***!
|
38962
|
+
\*************************************************************/
|
39008
38963
|
/*! no static exports found */
|
39009
38964
|
/***/ (function(module, exports, __webpack_require__) {
|
39010
38965
|
|
@@ -39047,9 +39002,9 @@ if (false) {} else {
|
|
39047
39002
|
/***/ }),
|
39048
39003
|
|
39049
39004
|
/***/ "../../../../node_modules/react-is/cjs/react-is.development.js":
|
39050
|
-
|
39051
|
-
!***
|
39052
|
-
|
39005
|
+
/*!*******************************************************************************!*\
|
39006
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-is/cjs/react-is.development.js ***!
|
39007
|
+
\*******************************************************************************/
|
39053
39008
|
/*! no static exports found */
|
39054
39009
|
/***/ (function(module, exports, __webpack_require__) {
|
39055
39010
|
|
@@ -39240,9 +39195,9 @@ exports.typeOf = typeOf;
|
|
39240
39195
|
/***/ }),
|
39241
39196
|
|
39242
39197
|
/***/ "../../../../node_modules/react-is/index.js":
|
39243
|
-
|
39244
|
-
!***
|
39245
|
-
|
39198
|
+
/*!************************************************************!*\
|
39199
|
+
!*** E:/Babylon/Babylon.js/node_modules/react-is/index.js ***!
|
39200
|
+
\************************************************************/
|
39246
39201
|
/*! no static exports found */
|
39247
39202
|
/***/ (function(module, exports, __webpack_require__) {
|
39248
39203
|
|
@@ -39257,9 +39212,9 @@ if (false) {} else {
|
|
39257
39212
|
/***/ }),
|
39258
39213
|
|
39259
39214
|
/***/ "../../../../node_modules/react/cjs/react.development.js":
|
39260
|
-
|
39261
|
-
!***
|
39262
|
-
|
39215
|
+
/*!*************************************************************************!*\
|
39216
|
+
!*** E:/Babylon/Babylon.js/node_modules/react/cjs/react.development.js ***!
|
39217
|
+
\*************************************************************************/
|
39263
39218
|
/*! no static exports found */
|
39264
39219
|
/***/ (function(module, exports, __webpack_require__) {
|
39265
39220
|
|
@@ -41181,9 +41136,9 @@ exports.version = ReactVersion;
|
|
41181
41136
|
/***/ }),
|
41182
41137
|
|
41183
41138
|
/***/ "../../../../node_modules/react/index.js":
|
41184
|
-
|
41185
|
-
!***
|
41186
|
-
|
41139
|
+
/*!*********************************************************!*\
|
41140
|
+
!*** E:/Babylon/Babylon.js/node_modules/react/index.js ***!
|
41141
|
+
\*********************************************************/
|
41187
41142
|
/*! no static exports found */
|
41188
41143
|
/***/ (function(module, exports, __webpack_require__) {
|
41189
41144
|
|
@@ -41198,9 +41153,9 @@ if (false) {} else {
|
|
41198
41153
|
/***/ }),
|
41199
41154
|
|
41200
41155
|
/***/ "../../../../node_modules/scheduler/cjs/scheduler-tracing.development.js":
|
41201
|
-
|
41202
|
-
!***
|
41203
|
-
|
41156
|
+
/*!*****************************************************************************************!*\
|
41157
|
+
!*** E:/Babylon/Babylon.js/node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
|
41158
|
+
\*****************************************************************************************/
|
41204
41159
|
/*! no static exports found */
|
41205
41160
|
/***/ (function(module, exports, __webpack_require__) {
|
41206
41161
|
|
@@ -41559,9 +41514,9 @@ exports.unstable_wrap = unstable_wrap;
|
|
41559
41514
|
/***/ }),
|
41560
41515
|
|
41561
41516
|
/***/ "../../../../node_modules/scheduler/cjs/scheduler.development.js":
|
41562
|
-
|
41563
|
-
!***
|
41564
|
-
|
41517
|
+
/*!*********************************************************************************!*\
|
41518
|
+
!*** E:/Babylon/Babylon.js/node_modules/scheduler/cjs/scheduler.development.js ***!
|
41519
|
+
\*********************************************************************************/
|
41565
41520
|
/*! no static exports found */
|
41566
41521
|
/***/ (function(module, exports, __webpack_require__) {
|
41567
41522
|
|
@@ -42429,9 +42384,9 @@ exports.unstable_wrapCallback = unstable_wrapCallback;
|
|
42429
42384
|
/***/ }),
|
42430
42385
|
|
42431
42386
|
/***/ "../../../../node_modules/scheduler/index.js":
|
42432
|
-
|
42433
|
-
!***
|
42434
|
-
|
42387
|
+
/*!*************************************************************!*\
|
42388
|
+
!*** E:/Babylon/Babylon.js/node_modules/scheduler/index.js ***!
|
42389
|
+
\*************************************************************/
|
42435
42390
|
/*! no static exports found */
|
42436
42391
|
/***/ (function(module, exports, __webpack_require__) {
|
42437
42392
|
|
@@ -42446,9 +42401,9 @@ if (false) {} else {
|
|
42446
42401
|
/***/ }),
|
42447
42402
|
|
42448
42403
|
/***/ "../../../../node_modules/scheduler/tracing.js":
|
42449
|
-
|
42450
|
-
!***
|
42451
|
-
|
42404
|
+
/*!***************************************************************!*\
|
42405
|
+
!*** E:/Babylon/Babylon.js/node_modules/scheduler/tracing.js ***!
|
42406
|
+
\***************************************************************/
|
42452
42407
|
/*! no static exports found */
|
42453
42408
|
/***/ (function(module, exports, __webpack_require__) {
|
42454
42409
|
|
@@ -42463,9 +42418,9 @@ if (false) {} else {
|
|
42463
42418
|
/***/ }),
|
42464
42419
|
|
42465
42420
|
/***/ "../../../../node_modules/setimmediate/setImmediate.js":
|
42466
|
-
|
42467
|
-
!***
|
42468
|
-
|
42421
|
+
/*!***********************************************************************!*\
|
42422
|
+
!*** E:/Babylon/Babylon.js/node_modules/setimmediate/setImmediate.js ***!
|
42423
|
+
\***********************************************************************/
|
42469
42424
|
/*! no static exports found */
|
42470
42425
|
/***/ (function(module, exports, __webpack_require__) {
|
42471
42426
|
|
@@ -42661,9 +42616,9 @@ if (false) {} else {
|
|
42661
42616
|
/***/ }),
|
42662
42617
|
|
42663
42618
|
/***/ "../../../../node_modules/split.js/dist/split.es.js":
|
42664
|
-
|
42665
|
-
!***
|
42666
|
-
|
42619
|
+
/*!********************************************************************!*\
|
42620
|
+
!*** E:/Babylon/Babylon.js/node_modules/split.js/dist/split.es.js ***!
|
42621
|
+
\********************************************************************/
|
42667
42622
|
/*! exports provided: default */
|
42668
42623
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
42669
42624
|
|
@@ -43433,9 +43388,9 @@ var Split = function (idsOption, options) {
|
|
43433
43388
|
/***/ }),
|
43434
43389
|
|
43435
43390
|
/***/ "../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js":
|
43436
|
-
|
43437
|
-
!***
|
43438
|
-
|
43391
|
+
/*!************************************************************************************************!*\
|
43392
|
+
!*** E:/Babylon/Babylon.js/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js ***!
|
43393
|
+
\************************************************************************************************/
|
43439
43394
|
/*! no static exports found */
|
43440
43395
|
/***/ (function(module, exports, __webpack_require__) {
|
43441
43396
|
|
@@ -43615,7 +43570,7 @@ function applyToTag(style, options, obj) {
|
|
43615
43570
|
style.removeAttribute('media');
|
43616
43571
|
}
|
43617
43572
|
|
43618
|
-
if (sourceMap && btoa) {
|
43573
|
+
if (sourceMap && typeof btoa !== 'undefined') {
|
43619
43574
|
css += "\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), " */");
|
43620
43575
|
} // For old IE
|
43621
43576
|
|
@@ -43713,9 +43668,9 @@ module.exports = function (list, options) {
|
|
43713
43668
|
/***/ }),
|
43714
43669
|
|
43715
43670
|
/***/ "../../../../node_modules/timers-browserify/main.js":
|
43716
|
-
|
43717
|
-
!***
|
43718
|
-
|
43671
|
+
/*!********************************************************************!*\
|
43672
|
+
!*** E:/Babylon/Babylon.js/node_modules/timers-browserify/main.js ***!
|
43673
|
+
\********************************************************************/
|
43719
43674
|
/*! no static exports found */
|
43720
43675
|
/***/ (function(module, exports, __webpack_require__) {
|
43721
43676
|
|
@@ -43788,10 +43743,10 @@ exports.clearImmediate = (typeof self !== "undefined" && self.clearImmediate) ||
|
|
43788
43743
|
/***/ }),
|
43789
43744
|
|
43790
43745
|
/***/ "../../../../node_modules/tslib/tslib.es6.js":
|
43791
|
-
|
43792
|
-
!***
|
43793
|
-
|
43794
|
-
/*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */
|
43746
|
+
/*!*************************************************************!*\
|
43747
|
+
!*** E:/Babylon/Babylon.js/node_modules/tslib/tslib.es6.js ***!
|
43748
|
+
\*************************************************************/
|
43749
|
+
/*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */
|
43795
43750
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
43796
43751
|
|
43797
43752
|
"use strict";
|
@@ -43810,6 +43765,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
43810
43765
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__read", function() { return __read; });
|
43811
43766
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spread", function() { return __spread; });
|
43812
43767
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArrays", function() { return __spreadArrays; });
|
43768
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArray", function() { return __spreadArray; });
|
43813
43769
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__await", function() { return __await; });
|
43814
43770
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncGenerator", function() { return __asyncGenerator; });
|
43815
43771
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncDelegator", function() { return __asyncDelegator; });
|
@@ -43843,6 +43799,8 @@ var extendStatics = function(d, b) {
|
|
43843
43799
|
};
|
43844
43800
|
|
43845
43801
|
function __extends(d, b) {
|
43802
|
+
if (typeof b !== "function" && b !== null)
|
43803
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
43846
43804
|
extendStatics(d, b);
|
43847
43805
|
function __() { this.constructor = d; }
|
43848
43806
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
@@ -43965,19 +43923,31 @@ function __read(o, n) {
|
|
43965
43923
|
return ar;
|
43966
43924
|
}
|
43967
43925
|
|
43926
|
+
/** @deprecated */
|
43968
43927
|
function __spread() {
|
43969
43928
|
for (var ar = [], i = 0; i < arguments.length; i++)
|
43970
43929
|
ar = ar.concat(__read(arguments[i]));
|
43971
43930
|
return ar;
|
43972
43931
|
}
|
43973
43932
|
|
43933
|
+
/** @deprecated */
|
43974
43934
|
function __spreadArrays() {
|
43975
43935
|
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
43976
43936
|
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
43977
43937
|
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
43978
43938
|
r[k] = a[j];
|
43979
43939
|
return r;
|
43980
|
-
}
|
43940
|
+
}
|
43941
|
+
|
43942
|
+
function __spreadArray(to, from, pack) {
|
43943
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
43944
|
+
if (ar || !(i in from)) {
|
43945
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
43946
|
+
ar[i] = from[i];
|
43947
|
+
}
|
43948
|
+
}
|
43949
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
43950
|
+
}
|
43981
43951
|
|
43982
43952
|
function __await(v) {
|
43983
43953
|
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
@@ -44032,19 +44002,17 @@ function __importDefault(mod) {
|
|
44032
44002
|
return (mod && mod.__esModule) ? mod : { default: mod };
|
44033
44003
|
}
|
44034
44004
|
|
44035
|
-
function __classPrivateFieldGet(receiver,
|
44036
|
-
if (!
|
44037
|
-
|
44038
|
-
|
44039
|
-
return privateMap.get(receiver);
|
44005
|
+
function __classPrivateFieldGet(receiver, state, kind, f) {
|
44006
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
44007
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
44008
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
44040
44009
|
}
|
44041
44010
|
|
44042
|
-
function __classPrivateFieldSet(receiver,
|
44043
|
-
if (
|
44044
|
-
|
44045
|
-
|
44046
|
-
|
44047
|
-
return value;
|
44011
|
+
function __classPrivateFieldSet(receiver, state, value, kind, f) {
|
44012
|
+
if (kind === "m") throw new TypeError("Private method is not writable");
|
44013
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
44014
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
44015
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
44048
44016
|
}
|
44049
44017
|
|
44050
44018
|
|
@@ -44082,9 +44050,9 @@ module.exports = g;
|
|
44082
44050
|
/***/ }),
|
44083
44051
|
|
44084
44052
|
/***/ "../../node_modules/re-resizable/lib/index.es5.js":
|
44085
|
-
|
44086
|
-
!***
|
44087
|
-
|
44053
|
+
/*!****************************************************************************************!*\
|
44054
|
+
!*** E:/Babylon/Babylon.js/.temp/sourceES6/node_modules/re-resizable/lib/index.es5.js ***!
|
44055
|
+
\****************************************************************************************/
|
44088
44056
|
/*! no static exports found */
|
44089
44057
|
/***/ (function(module, exports, __webpack_require__) {
|
44090
44058
|
|
@@ -46445,11 +46413,24 @@ var QuaternionLineComponent = /** @class */ (function (_super) {
|
|
46445
46413
|
_this.state = { isExpanded: false, value: quat, eulerValue: quat.toEulerAngles() };
|
46446
46414
|
return _this;
|
46447
46415
|
}
|
46416
|
+
QuaternionLineComponent.prototype._checkRoundCircle = function (a, b) {
|
46417
|
+
return Math.abs(_babylonjs_core_Misc_tools__WEBPACK_IMPORTED_MODULE_5__["Tools"].ToDegrees(a)) + Math.abs(_babylonjs_core_Misc_tools__WEBPACK_IMPORTED_MODULE_5__["Tools"].ToDegrees(b)) === 360;
|
46418
|
+
};
|
46448
46419
|
QuaternionLineComponent.prototype.shouldComponentUpdate = function (nextProps, nextState) {
|
46449
46420
|
var nextPropsValue = nextProps.target[nextProps.propertyName];
|
46450
46421
|
if (!nextPropsValue.equals(nextState.value) || this._localChange) {
|
46451
46422
|
nextState.value = nextPropsValue.clone();
|
46452
46423
|
nextState.eulerValue = nextPropsValue.toEulerAngles();
|
46424
|
+
// Let's make sure we are not going on the opposite (but correct) value
|
46425
|
+
if (this._checkRoundCircle(nextState.eulerValue.x, this.state.eulerValue.x)) {
|
46426
|
+
nextState.eulerValue.x = this.state.eulerValue.x;
|
46427
|
+
}
|
46428
|
+
if (this._checkRoundCircle(nextState.eulerValue.y, this.state.eulerValue.y)) {
|
46429
|
+
nextState.eulerValue.y = this.state.eulerValue.y;
|
46430
|
+
}
|
46431
|
+
if (this._checkRoundCircle(nextState.eulerValue.z, this.state.eulerValue.z)) {
|
46432
|
+
nextState.eulerValue.z = this.state.eulerValue.z;
|
46433
|
+
}
|
46453
46434
|
this._localChange = false;
|
46454
46435
|
return true;
|
46455
46436
|
}
|
@@ -46523,7 +46504,10 @@ var QuaternionLineComponent = /** @class */ (function (_super) {
|
|
46523
46504
|
var _this = this;
|
46524
46505
|
var chevron = this.state.isExpanded ? react__WEBPACK_IMPORTED_MODULE_1__["createElement"](_fortawesome_react_fontawesome__WEBPACK_IMPORTED_MODULE_3__["FontAwesomeIcon"], { icon: _fortawesome_free_solid_svg_icons__WEBPACK_IMPORTED_MODULE_4__["faMinus"] }) : react__WEBPACK_IMPORTED_MODULE_1__["createElement"](_fortawesome_react_fontawesome__WEBPACK_IMPORTED_MODULE_3__["FontAwesomeIcon"], { icon: _fortawesome_free_solid_svg_icons__WEBPACK_IMPORTED_MODULE_4__["faPlus"] });
|
46525
46506
|
var quat = this.state.value;
|
46526
|
-
var
|
46507
|
+
var eulerDegrees = this.state.eulerValue.clone();
|
46508
|
+
eulerDegrees.x = _babylonjs_core_Misc_tools__WEBPACK_IMPORTED_MODULE_5__["Tools"].ToDegrees(eulerDegrees.x);
|
46509
|
+
eulerDegrees.y = _babylonjs_core_Misc_tools__WEBPACK_IMPORTED_MODULE_5__["Tools"].ToDegrees(eulerDegrees.y);
|
46510
|
+
eulerDegrees.z = _babylonjs_core_Misc_tools__WEBPACK_IMPORTED_MODULE_5__["Tools"].ToDegrees(eulerDegrees.z);
|
46527
46511
|
return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("div", { className: "vector3Line" },
|
46528
46512
|
react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("div", { className: "firstLine", title: this.props.label + (" (Using Quaternion)") },
|
46529
46513
|
react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("div", { className: "label" }, this.props.label + (" (Using Quaternion)")),
|
@@ -46531,7 +46515,7 @@ var QuaternionLineComponent = /** @class */ (function (_super) {
|
|
46531
46515
|
!this.props.useEuler &&
|
46532
46516
|
"X: " + quat.x.toFixed(1) + ", Y: " + quat.y.toFixed(1) + ", Z: " + quat.z.toFixed(1) + ", W: " + quat.w.toFixed(1),
|
46533
46517
|
this.props.useEuler &&
|
46534
|
-
"X: " +
|
46518
|
+
"X: " + eulerDegrees.x.toFixed(2) + ", Y: " + eulerDegrees.y.toFixed(2) + ", Z: " + eulerDegrees.z.toFixed(2)),
|
46535
46519
|
react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("div", { className: "expand", onClick: function () { return _this.switchExpandState(); } }, chevron)),
|
46536
46520
|
this.state.isExpanded && !this.props.useEuler &&
|
46537
46521
|
react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("div", { className: "secondLine" },
|
@@ -46541,9 +46525,9 @@ var QuaternionLineComponent = /** @class */ (function (_super) {
|
|
46541
46525
|
react__WEBPACK_IMPORTED_MODULE_1__["createElement"](_numericInputComponent__WEBPACK_IMPORTED_MODULE_2__["NumericInputComponent"], { label: "w", value: quat.w, onChange: function (value) { return _this.updateStateW(value); } })),
|
46542
46526
|
this.state.isExpanded && this.props.useEuler &&
|
46543
46527
|
react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("div", { className: "secondLine" },
|
46544
|
-
react__WEBPACK_IMPORTED_MODULE_1__["createElement"](_floatLineComponent__WEBPACK_IMPORTED_MODULE_6__["FloatLineComponent"], { label: "x",
|
46545
|
-
react__WEBPACK_IMPORTED_MODULE_1__["createElement"](_floatLineComponent__WEBPACK_IMPORTED_MODULE_6__["FloatLineComponent"], { label: "y",
|
46546
|
-
react__WEBPACK_IMPORTED_MODULE_1__["createElement"](_floatLineComponent__WEBPACK_IMPORTED_MODULE_6__["FloatLineComponent"], { label: "z",
|
46528
|
+
react__WEBPACK_IMPORTED_MODULE_1__["createElement"](_floatLineComponent__WEBPACK_IMPORTED_MODULE_6__["FloatLineComponent"], { label: "x", target: eulerDegrees, propertyName: 'x', onChange: function (value) { _this.updateStateEulerX(value); } }),
|
46529
|
+
react__WEBPACK_IMPORTED_MODULE_1__["createElement"](_floatLineComponent__WEBPACK_IMPORTED_MODULE_6__["FloatLineComponent"], { label: "y", target: eulerDegrees, propertyName: 'y', onChange: function (value) { _this.updateStateEulerY(value); } }),
|
46530
|
+
react__WEBPACK_IMPORTED_MODULE_1__["createElement"](_floatLineComponent__WEBPACK_IMPORTED_MODULE_6__["FloatLineComponent"], { label: "z", target: eulerDegrees, propertyName: 'z', onChange: function (value) { _this.updateStateEulerZ(value); } }))));
|
46547
46531
|
};
|
46548
46532
|
return QuaternionLineComponent;
|
46549
46533
|
}(react__WEBPACK_IMPORTED_MODULE_1__["Component"]));
|