HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Chazrox
    • Profile
    • Following 4
    • Followers 1
    • Topics 65
    • Posts 524
    • Groups 0

    Chazrox

    @Chazrox

    Music Producer based in Los Angeles. Learning HISE everyday.

    150
    Reputation
    62
    Profile views
    524
    Posts
    1
    Followers
    4
    Following
    Joined
    Last Online
    Age 41
    Location Los Angeles, CA.

    Chazrox Unfollow Follow

    Best posts made by Chazrox

    • RE: More Positive Posts?

      Good Morning! I agree. Here's something I've been doing. Aside from working on my personal plugins, I've been wanting to show my appreciation to the community by designing a set of 3d assets / filmstrips that people can use on their projects.

      There are quite a few regulars in here that always get me going when im stuck. I Love it here!

      This is just a mockup of one of the kits im working on. All of these assets should be available for anyone to use soon. Dont quote me on "soon". Im sure everyone in here has 10 things going at once lol.

      Screenshot 2025-02-02 at 9.14.44 AM.png

      Screenshot 2025-02-02 at 6.44.25 AM.png

      Im still messing around with the faceplate so the actual release might not be exact.

      Much Love to the community!
      Special Thanks to @Christoph-Hart
      and honorable mention to Mr. @d-healey who got me going on all this in the first place!
      Im soaking it all in!

      posted in General Questions
      ChazroxC
      Chazrox
    • FREE DESIGN || Upgrade Your Keyboard!

      Freebie for the community.
      Screenshot 2025-05-11 at 2.08.43 AM.png

      Here's the script:

      namespace LafRealKeyboard
      {
      	const var FloatingTile1 = Content.getComponent("FloatingTile1");
      	const var Laf_RealKeys = Content.createLocalLookAndFeel();
      	
      	//! DRAW WHITE NOTE
      	Laf_RealKeys.registerFunction("drawWhiteNote", function(g,obj)
      	{
      		var a = obj.area;
      		var WhiteUp = Laf_RealKeys.loadImage("{PROJECT_FOLDER}WHITE KEY - UP 11.png", "WHITE KEY - UP 11.png");
      		var WhiteDown = Laf_RealKeys.loadImage("{PROJECT_FOLDER}WHITE KEY - DOWN 11.png", "WHITE KEY - DOWN 11.png");
      		
      		if (obj.down)
      		{
      			g.drawImage("WHITE KEY - DOWN 11.png", a, 0, 0);
      			g.setColour(Colours.red);			
      		}
      		if (!obj.down)
      		{
      			g.drawImage("WHITE KEY - UP 11.png", a, 0, 0);	
      		}	
      	});
      	Content.getComponent("FloatingTile1").setLocalLookAndFeel(Laf_RealKeys);
      	
      	//! DRAW BLACK NOTE
      	Laf_RealKeys.registerFunction("drawBlackNote", function(g,obj)
      	{
      		var a = obj.area;
      		var BlackUp = Laf_RealKeys.loadImage("{PROJECT_FOLDER}BLACK KEY - UP 11.png", "BLACK KEY - UP 11.png");
      		var BlackDown = Laf_RealKeys.loadImage("{PROJECT_FOLDER}BLACK KEY - DOWN 11.png", "BLACK KEY - DOWN 11.png");
      		
      		if (!obj.down)
      		{
      			g.drawImage("BLACK KEY - UP 11.png", a ,0, 0);	
      		}
      		if (obj.down)
      		{	
      			g.drawImage("BLACK KEY - DOWN 11.png", [a[0], a[1], a[2], a[3] + 10] ,0, 0);
      		}
      	});
      	Content.getComponent("FloatingTile1").setLocalLookAndFeel(Laf_RealKeys);
      }
      

      Download these images and add them to your projects 'Images' folder. F5. Enjoy.
      FILES---> CUSTOM KEYBOARD IMAGES

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Software for Animation Sprites....

      @rglides SAMPLE:

      *HISE Logo for fun. Dont sue me. lol

      Screenshot 2025-02-02 at 4.42.00 AM.png

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Software for Animation Sprites....

      Ok just sharing my first 3d Knob that I made! This is gonna be fun.

      @lalalandsynth how do you get your shadows to show up in the animation? I can seem to get mine to show up on the transparent areas.

      ezgif-4668e059bd8e4.gif

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Guitar Pedal GUI Kit in the making.

      Screenshot 2025-02-11 at 12.11.02 AM.png

      posted in Presets / Scripts / Ideas
      ChazroxC
      Chazrox
    • RE: Help. Project wont open. Instant crash.

      @Chazrox man I really figured this one out on my own and im proud of myself. lol

      I started digging around and I opened the corresponding .xml file for the project and noticed in one of the lines that it was pointing to a default preset that no longer existed in the expected folder it was supposed to be in. Turns out I DID do something, which was move that folder that the preset was supposed to be in. I deleted that line and everything opened up as normal. fweeww! Sweats! haha.

      this thing...

      Screenshot 2025-03-08 at 9.55.41 AM.png

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Player - I'm going crazy

      @clevername27 agreed. Just resubscribed for my second month and the amount that i've learned so far is insane.

      posted in ScriptNode
      ChazroxC
      Chazrox
    • RE: Software for Animation Sprites....

      @d-healey Woah! That changed the game for me! Now I can use my Blender skills to make my own assets! Cheee! Thank You Sir! Dont mind this crappy design, I just did it for testing. ezgif-65a5dac64db1b.gif

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: The big bug tier list

      chanting Lets go Christoph! Lets GO!

      Im sure all my bugs are covered here so im just sending some good energy! haha
      @Christoph-Hart 👐

      posted in Bug Reports
      ChazroxC
      Chazrox
    • Guitar Pedal GUI Kit in the making.

      Besides my console models, I decided to start making some pedal kits for everyone too! Lmk if you guys have any requests.

      const var screenshot = ! Render;
      so dont judge my lighting so hard. lol

      Screenshot 2025-02-10 at 2.39.06 PM.png

      Screenshot 2025-02-10 at 2.23.46 PM.png

      posted in Presets / Scripts / Ideas
      ChazroxC
      Chazrox

    Latest posts made by Chazrox

    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @d-healey said in I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.:

      keep the HISE binary within the HISE source code folder

      by this you mean, not move it from where its currently at?
      I have it pinned to my dock already.

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @DanH My projects are in my 'Documents' folder. I imagine that should be consistent with my admin permissions.

      Would moving the location of Hise mess anything up with file paths?

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @DanH Where would you suggest is the best place to run Hise from with this in mind?

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @DanH Im running HISE from a folder in my 'Downloads'....

      I just found this at that folder path you suggested (Application Support/HISE)...

      I didnt know this was here at all...could this be it??

      Screenshot 2025-05-28 at 4.25.05 AM.png

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @d-healey Sorry, because I re did it again to check for the binaries thing Dan was asking for and I didnt save the "New" project, I accidentally did it in the last open project that I was testing another export in a little while ago.

      I just did it again from scratch just for good measure...same results.. this is the folder again after i closed the project after spinning wheel.

      Screenshot 2025-05-28 at 4.14.15 AM.png

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @DanH this is from the project folder from this example.

      Screenshot 2025-05-28 at 4.06.11 AM.png

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @d-healey I just do that by default sometimes tbh. It'll do the same thing without it.

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @d-healey
      ezgif-5b6765736a5424.gif

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @d-healey ok. brb.

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: I STILL cant compile DLL's // What am I doing wrong? // Taking all suggestions.

      @d-healey yup. Everything has been good except for this feature.

      posted in General Questions
      ChazroxC
      Chazrox