Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Processing のマウスカーソルを透明な png に変更するにはどうすればよいですか?
アプリケーションウィンドウのみ。
これを試して:
PImage mouseCursor; void setup() { size(640,480); mouseCursor = loadImage("MouseCursor.png"); } void draw() { if(mouseX < 100) { cursor(mouseCursor, 0, 0); } else { cursor(HAND); } }