vim-web 0.3.44-dev.80 → 0.3.44-dev.81

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.
package/dist/vim-web.js CHANGED
@@ -58222,6 +58222,12 @@ class RpcClient {
58222
58222
  marshal.writeRGBA(ghostColor);
58223
58223
  this._socket.sendRPC(marshal);
58224
58224
  }
58225
+ RPCSetGhostColor2(ghostColor) {
58226
+ const marshal = new Marshal();
58227
+ marshal.writeString("RPCSetGhostColor2");
58228
+ marshal.writeRGBA(ghostColor);
58229
+ this._socket.sendRPC(marshal);
58230
+ }
58225
58231
  RPCSetIblRotation(transform) {
58226
58232
  const marshal = new Marshal();
58227
58233
  marshal.writeString("RPCSetIblRotation");
@@ -59550,7 +59556,7 @@ class RpcSafeClient {
59550
59556
  */
59551
59557
  RPCSetGhostColor(ghostColor) {
59552
59558
  const color = Validation.clampRGBA01(ghostColor);
59553
- this.rpc.RPCSetGhostColor(color);
59559
+ this.rpc.RPCSetGhostColor2(color);
59554
59560
  }
59555
59561
  /**
59556
59562
  * Performs hit testing at a specified screen position.
@@ -59798,7 +59804,7 @@ class RpcSafeClient {
59798
59804
  const defaultRenderSettings = {
59799
59805
  ...defaultSceneSettings,
59800
59806
  lockIblRotation: true,
59801
- ghostColor: new RGBA(14 / 255, 14 / 255, 14 / 255, 1 / 255)
59807
+ ghostColor: new RGBA(14 / 255, 14 / 255, 14 / 255, 64 / 255)
59802
59808
  };
59803
59809
  class Renderer2 {
59804
59810
  /**