MadJik Posted October 6, 2007 Share Posted October 6, 2007 Hi Rick, (and the PDN team? Tom?) I made AddNoise+ with the idea you could update the built-it Addnoise effect. I made the TwistZ with the same idea... I'm just about to do a +version of the tiles reflection effect (tiles XL): Angle: value -450 to 450, and amount divided by 10 (or add a decimal position) Square size: increase the maximum up to 800... Curvature: Value -200 to 200. And perhaps a new slider for the quality, and it is a constant in the code... Thanks for Paint.Net ! Quote My DeviantArt | My Pictorium | My Plugins | Donate via Paypal Link to comment Share on other sites More sharing options...
Ash Posted October 6, 2007 Share Posted October 6, 2007 I'm just about to do a +version of the tiles reflection effect (tiles XL):Angle: value -450 to 450, and amount divided by 10 (or add a decimal position) Square size: increase the maximum up to 800... Curvature: Value -200 to 200. I was just thinking of making a request about Tile reflect :o And 1 of the thing is make larger sizes. How are you reading my mind :shock: :?: Square size: increase the maximum up to 800... How about making it nice and even number like 1000, possible? Quote All creations Ash + Paint.NET [ Googlepage | deviantArt | Club PDN | PDN Fan ] Link to comment Share on other sites More sharing options...
MadJik Posted October 6, 2007 Author Share Posted October 6, 2007 @Ash: 1. 800 coz it's the width of the default image. But I'm ok with 1000! 2. I only have an internet connection... (no interBRAIN cnx)! 3. How to you think I made this one ? Do you want the DLL for tilesXL? Quote My DeviantArt | My Pictorium | My Plugins | Donate via Paypal Link to comment Share on other sites More sharing options...
Ash Posted October 6, 2007 Share Posted October 6, 2007 Yeah I was wondering how you made the large tile And yes, I believe everybody wants the tilesXL! :!: Thanks! Quote All creations Ash + Paint.NET [ Googlepage | deviantArt | Club PDN | PDN Fan ] Link to comment Share on other sites More sharing options...
Rick Brewster Posted October 6, 2007 Share Posted October 6, 2007 Heh just hold your horses, I'm working on some really cool stuff for the next release, especially in the area of plugin development. (goodbye "1 2 3 amount" dialogs ...) Quote The Paint.NET Blog: https://blog.getpaint.net/ Donations are always appreciated! https://www.getpaint.net/donate.html Link to comment Share on other sites More sharing options...
DarkShock Posted October 6, 2007 Share Posted October 6, 2007 Heh just hold your horses, I'm working on some really cool stuff for the next release, especially in the area of plugin development. (goodbye "1 2 3 amount" dialogs ...)Really? Aww....now you're going to make me have to build anticipation. Quote ---- Gallery | Sig Tutorial | deviantART | Sig Videos | PhotoBucket ----DÂ Â Â Â Â Â Â Â Â Â Â EÂ Â Â Â Â Â Â Â Â Â SÂ Â Â Â Â Â Â Â Â Â TÂ Â Â Â Â Â Â Â Â Â Â IÂ Â Â Â Â Â Â Â Â Â Â NÂ Â Â Â Â Â Â Â Â Â Â Y Link to comment Share on other sites More sharing options...
Rick Brewster Posted October 6, 2007 Share Posted October 6, 2007 How about the fact that this code is all it takes to generate the following UI... Once it's this easy to write the UI, it's also this easy to change the UI. Without being restricted to 3 lame sliders. (there's also some extra code for handling localization, but you don't need to write it and can just use default EnumValue.ToString()-style names) protected override PropertyCollection CreatePropertyCollection() { List props = new List(); props.Add(new Int32Property(PropertyNames.Factor, 1, 1, 10)); props.Add(new DoubleProperty(PropertyNames.Zoom, 10, 0, 100)); props.Add(new AngleProperty(PropertyNames.Angle)); props.Add(new DoubleVectorProperty( PropertyNames.Offset, Pair.MakePair(0.0, 0.0), Pair.MakePair(-1.0, -1.0), Pair.MakePair(1.0, 1.0))); props.Add(new Int32Property(PropertyNames.Quality, 2, 1, 4)); props.Add(new BooleanProperty(PropertyNames.InvertColors)); return new PropertyCollection(props, new PropertyCollectionRule[0]); } Quote The Paint.NET Blog: https://blog.getpaint.net/ Donations are always appreciated! https://www.getpaint.net/donate.html Link to comment Share on other sites More sharing options...
Andrew D Posted October 6, 2007 Share Posted October 6, 2007 How about the fact that this code is all it takes to generate the following UI...Once it's this easy to write the UI, it's also this easy to change the UI. Without being restricted to 3 lame sliders. (there's also some extra code for handling localization, but you don't need to write it and can just use default EnumValue.ToString()-style names) protected override PropertyCollection CreatePropertyCollection() { List props = new List(); props.Add(new Int32Property(PropertyNames.Factor, 1, 1, 10)); props.Add(new DoubleProperty(PropertyNames.Zoom, 10, 0, 100)); props.Add(new AngleProperty(PropertyNames.Angle)); props.Add(new DoubleVectorProperty( PropertyNames.Offset, Pair.MakePair(0.0, 0.0), Pair.MakePair(-1.0, -1.0), Pair.MakePair(1.0, 1.0))); props.Add(new Int32Property(PropertyNames.Quality, 2, 1, 4)); props.Add(new BooleanProperty(PropertyNames.InvertColors)); return new PropertyCollection(props, new PropertyCollectionRule[0]); } So, basically this new plug-in arcitechture will kinda replace CodeLab, or will it be a seperate function? Quote Link to comment Share on other sites More sharing options...
BoltBait Posted October 6, 2007 Share Posted October 6, 2007 So, basically this new plug-in arcitechture will kinda replace CodeLab, or will it be a seperate function? CodeLab will still be around. (Currently, there is no better place to prototype effects!) It's just that the UI code stuff I wrote will no longer be needed. CodeLab will be updated. Quote Click to play: Download: BoltBait's Plugin Pack | CodeLab | and how about a Computer Dominos Game Link to comment Share on other sites More sharing options...
Rick Brewster Posted October 6, 2007 Share Posted October 6, 2007 Nothing is being removed. People aren't happy when their plugins just stop working for no reason Not exactly an incentive to upgrade to the latest version. Quote The Paint.NET Blog: https://blog.getpaint.net/ Donations are always appreciated! https://www.getpaint.net/donate.html Link to comment Share on other sites More sharing options...
MadJik Posted October 7, 2007 Author Share Posted October 7, 2007 Only good news! Thanks Rick... Quote My DeviantArt | My Pictorium | My Plugins | Donate via Paypal Link to comment Share on other sites More sharing options...
MadJik Posted October 7, 2007 Author Share Posted October 7, 2007 @Ash (and anyone who wants) This is the TilesR (Tiles XL) topic: viewtopic.php?f=16&t=20657&start=0&st=0&sk=t&sd=a (edit: changed DLL attachment to the topic in the plugin forum) Quote My DeviantArt | My Pictorium | My Plugins | Donate via Paypal Link to comment Share on other sites More sharing options...
jerkfight Posted October 7, 2007 Share Posted October 7, 2007 Is it a plugin? Effect... or what... add it to plugins if it is please Quote  Link to comment Share on other sites More sharing options...
Ash Posted October 8, 2007 Share Posted October 8, 2007 @Ash (and anyone who wants)This is the TilesR (Tiles XL) DLL: [attachment=0]TilesR.zip[/attachment] Very nice! Thanks a lot! Quote All creations Ash + Paint.NET [ Googlepage | deviantArt | Club PDN | PDN Fan ] Link to comment Share on other sites More sharing options...
MadJik Posted October 8, 2007 Author Share Posted October 8, 2007 Is it a plugin? Effect... or what... add it to plugins if it is please Plugin added in the plugin forum... viewtopic.php?f=16&t=20657&start=0&st=0&sk=t&sd=a @Ash: thanks Quote My DeviantArt | My Pictorium | My Plugins | Donate via Paypal Link to comment Share on other sites More sharing options...
The_Lionhearted Posted October 8, 2007 Share Posted October 8, 2007 Awesome...I for one am pumped about new developments. Quote My Gallery Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.