Commit c47dc3f1 authored by wildfirecode13's avatar wildfirecode13

u

parent a10ef560
export const createMask = (w, h,r, p,color?,alpha?) => {
const m = new FYGE.Shape();
m.beginFill(color||1, alpha||1);
m.beginFill(color||1, alpha||0);
m.drawRoundedRect(0, 0, w, h,r,r,r,r);
m.endFill();
p && p.addChild(m);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment