Voxiom.io scary hack

this is a verry scary voxiom.io hack

  1. // ==UserScript==
  2. // @name Voxiom.io scary hack
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description this is a verry scary voxiom.io hack
  6. // @author Tomask4
  7. // @match *://voxiom.io/*
  8. // @icon https://www.google.com/s2/favicons?domain=voxiom.io
  9. // @grant none
  10. // @license none
  11. // ==/UserScript==
  12. const wireFrame = false
  13.  
  14. const original_push = Array.prototype.push;
  15. Array.prototype.push = function(...args) {
  16. original_push.apply(this, args);
  17. if (args[0] && args[0].material && args[0].type == "SkinnedMesh") {
  18. if(wireFrame) {args[0].material.wireframe = true}
  19. args[0].material.alphaTest = 1;
  20. args[0].material.depthTest = false;
  21. args[0].material.fog = false;
  22. args[0].material.color.r = 0;
  23. args[0].material.color.g = 1;
  24. args[0].material.color.b = 0;
  25. console.log(args[0])
  26. }
  27. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址