i find the light positioning diffcult...
is it possible to add moving / rotation handles like for the models?
i find the light positioning diffcult...
is it possible to add moving / rotation handles like for the models?
hosting license is something different like when you use krpano directly in a webhosting, eg if you offer something like online panorama tour generation where end users can upload their images and create their own tours.
see here: https://krpano.com/buy/license/
but if you create a regular tour for a client, then your client can host it on his or any website without license.
( Klaus : please correct if wrong)
you need a license to create the tour, your client doesn't need a license
would it be rendering-wise demanding to add more blend modes in the future ?
krpano.com - Documentation - XML Reference
eg. screen, multiply, etc
ja.. das ist jetzt keine normale system meldung mehr... da kommst du wahrsch. nicht weiter.
du kannst ein älteres macos in einer VM laufen lassen, zb mit vmware fusion .. evtl gibts auch gratis lösungen
dann ist das PTP kompatibel mit dem system. speed issues sollten ja kein problem sein.
oder du arbeitest weiter auf dem PC für diese sachen.
aber wenn du ajour sein willst, dann tauchst du in die benutzung von krpano ohne PTP ein.
doch, rosetta, das sollte aber automatisch gehen.
was ist die fehlermeldung?
... übrigens ist PTP nur ein GUI Wrapper für krpano, damit du nicht manuell in den code eingreifen musst. falls du damit ggf ein mitgeliefertes und nicht das aktuelle krpano verwendest hast du auch das problem, dass erstellte Touren auf neueren Mobiles nicht richtig laufen. Grundsätzlich wäre es besser PTP zu vergessen und die touren direkt mit krpano zu machen.
das problem ist, dass PTP uralt ist und neuere (zwingende) system updates nicht kennt/benutzt/unterstützt
ob PTP noch zum laufen gebracht werden kann, weiss ich nicht. folgendes kanst du testen:
1. raus aus dem downloads ordner und dequarantine (googeln)
2. den apps vollen disk zugriff geben (einstellungen / security)
3. mit rechts click - öffnen starten, falls es nicht will
Do the plug-ins really change from one version to the next and if they do, would they work differently and change the overall function?
yes they change ofc as well over time. no they are not changing the overall function, and they will be backwards compatible. but they expect to run with the version they were built for. the license is maybe just used for the new three.js plugin.. (?) ... you can try to remove it.
first thing: the plugins you use are from 1.20 and do not match the used krpano 1.22
this is for sure problematic and you should replace the krpano plugins folder with the one from 1.22
i had the tween issue as well and noticed that my code didn't init the value before tweening in 1.21 already.
after a quick fix in my code, the warning was gone. but no crashes involved.
Klaus :
what happens if eg. layer[menu1].alpha is unset (null) and gets tweened to 0.5 ?
is the tween ignored ? and was that the same in 1.21 ?
these are issues that existed in 1.21, too, but weren't reported then.
eg. you're tweening a value that hasn't been initialized yet. (is null)
if sites crash it is most likely a memory issue.
MyCommerce / Share-It kicked out a lot of sellers out 2-3? years ago, without proper explanation.
hope you'll get these payouts somewhen!
try : stoptween(calc('hotspot['+i+'].ox'));
the problem is in the lower part, you forgot get() there
set(lotenum, get(hotspot[get(i)].lote));
set(lotedisponible, get(datoslotifica[get(lotenum)].status));
if(lotedisponible == 1,
set(hotspot[get(lotenum].fillcolor, get(colorlote_disponible));
, lotedisponible == 2,
set(hotspot[get(lotenum].fillcolor, get(colorlote_apartado));
,
set(hotspot[get(lotenum].fillcolor, get(colorlote_vendido));
);
or even better, use copy(a, b) which is a shortcut for set(a,get(b));
copy(lotenum, hotspot[get(i)].lote);
copy(lotedisponible, datoslotifica[get(lotenum)].status);
if(lotedisponible == 1,
copy(hotspot[get(lotenum].fillcolor, colorlote_disponible);
, lotedisponible == 2,
copy(hotspot[get(lotenum].fillcolor, colorlote_apartado);
,
copy(hotspot[get(lotenum].fillcolor, colorlote_vendido);
);