Post your screenshots!

paramat
Member
 
Posts: 2662
Joined: Sun Oct 28, 2012 00:05
GitHub: paramat

Re: Post your screenshots!

by paramat » Sat Apr 09, 2016 22:24

Lovely.
 

User avatar
duane
Member
 
Posts: 776
Joined: Wed Aug 19, 2015 19:11
GitHub: duane-r

Australia

by duane » Mon Apr 11, 2016 06:07

demon_boy's new Australia mod. Wow.

Image

Image

Image
Attachments
australia-03.jpg
australia-03.jpg (311.82 KiB) Viewed 3836 times
australia-02.jpg
australia-02.jpg (411.13 KiB) Viewed 3836 times
australia-01.jpg
australia-01.jpg (345.07 KiB) Viewed 3836 times
 

sofar
Member
 
Posts: 781
Joined: Fri Jan 16, 2015 07:31
GitHub: sofar
IRC: sofar
In-game: sofar

Re: Post your screenshots!

by sofar » Mon Apr 11, 2016 07:32

It's not burning, nor are there snakes or spiders. Are you sure it's Australia? ;)
 

User avatar
demon_boy
Member
 
Posts: 30
Joined: Thu Apr 09, 2015 10:53
GitHub: vlapsley
In-game: demon_boy

Re: Post your screenshots!

by demon_boy » Mon Apr 11, 2016 10:10

Or sharks, box jellyfish, stonefish, blue-ringed octopus, crocodiles and a sea-snake. Worried about what's on the land?

Don't prompt me to add Australian water mobs ;)
 

User avatar
ExeterDad
Member
 
Posts: 1121
Joined: Sun Jun 01, 2014 20:00
In-game: ExeterDad

Re: Post your screenshots!

by ExeterDad » Mon Apr 11, 2016 16:31

Don't forget Nemo and Dori. And P. Sherman, 42 Wallaby Way. Sydney.
٩(̾●̮̮̃̾•̃̾)۶

Kibbie and I have a beautiful public server now! HOMETOWN
 

User avatar
duane
Member
 
Posts: 776
Joined: Wed Aug 19, 2015 19:11
GitHub: duane-r

Re: Post your screenshots!

by duane » Mon Apr 11, 2016 21:29

We have sharks, jellyfish, crocs, and Dori already. Just need to work on the others.

Personally, I'd be more worried about all the goblins and zombies I'm about to unleash on the land down under.

Marsupial elephant? Maybe just a zoo escape...

Image
Attachments
australia-04.jpg
australia-04.jpg (348.87 KiB) Viewed 3836 times
 

User avatar
demon_boy
Member
 
Posts: 30
Joined: Thu Apr 09, 2015 10:53
GitHub: vlapsley
In-game: demon_boy

Re: Post your screenshots!

by demon_boy » Wed Apr 13, 2016 10:30

Where the Daintree Rainforest meets the sea you might find mangroves. Watch out for ol' Salty!

Image
 

User avatar
MineYoshi
Member
 
Posts: 4267
Joined: Wed Jul 08, 2015 13:20
GitHub: MineYosh
IRC: MineYoshi
In-game: Kirby_Retro

Re: Post your screenshots!

by MineYoshi » Wed Apr 13, 2016 18:43

demon_boy wrote:Where the Daintree Rainforest meets the sea you might find mangroves. Watch out for ol' Salty!

Image



Nice!
People talk about freedom of speech, so i'll say that God exists.
Open your eyes!! See The big unicorn conspiracy.!! :D The government has been lying to us about unicorns!!
"I've learned there are three things you don't discuss with people: religion, politics and the Great Pumpkin" - Linus Van Pelt
I'm the Officially 1st ABJist in the world ( ͡° ͜ʖ ͡°)
 

User avatar
thomasthespacefox
Member
 
Posts: 37
Joined: Sun Aug 02, 2015 15:00
GitHub: ThomasTheSpaceFox
In-game: thomasthespacefox

Re: Post your screenshots!

by thomasthespacefox » Thu Apr 14, 2016 01:50

a walled city im working on. the city not only will have a upper level across the high-rise rooftops. but also has a network of underground buildings, tunnels, etc.

Image
Attachments
screenshot_4174337839.png
screenshot_4174337839.png (370.57 KiB) Viewed 3836 times
 

User avatar
MineYoshi
Member
 
Posts: 4267
Joined: Wed Jul 08, 2015 13:20
GitHub: MineYosh
IRC: MineYoshi
In-game: Kirby_Retro

Re: Post your screenshots!

by MineYoshi » Thu Apr 14, 2016 02:41

thomasthespacefox wrote:a walled city im working on. the city not only will have a upper level across the high-rise rooftops. but also has a network of underground buildings, tunnels, etc.

Image



Nice Building!
People talk about freedom of speech, so i'll say that God exists.
Open your eyes!! See The big unicorn conspiracy.!! :D The government has been lying to us about unicorns!!
"I've learned there are three things you don't discuss with people: religion, politics and the Great Pumpkin" - Linus Van Pelt
I'm the Officially 1st ABJist in the world ( ͡° ͜ʖ ͡°)
 

User avatar
thomasthespacefox
Member
 
Posts: 37
Joined: Sun Aug 02, 2015 15:00
GitHub: ThomasTheSpaceFox
In-game: thomasthespacefox

Re: Post your screenshots!

by thomasthespacefox » Thu Apr 14, 2016 05:54

MineYoshi wrote:
thomasthespacefox wrote:a walled city im working on. the city not only will have a upper level across the high-rise rooftops. but also has a network of underground buildings, tunnels, etc.

Image



Nice Building!

Thanks! ^-^
 

Hybrid Dog
Member
 
Posts: 2460
Joined: Thu Nov 01, 2012 12:46

Re: Post your screenshots!

by Hybrid Dog » Thu Apr 14, 2016 16:25

l changed the node highlighting shader:
Image
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
uniform sampler2D baseTexture;

void main(void)
{
   vec2 uv = gl_TexCoord[0].st;
   vec4 color = texture2D(baseTexture, uv);
   color.rgb *= gl_Color.rgb;

   float cs = 0.1;
   float b1 = smoothstep(1.0-cs, 1.0, 2.0*abs(uv.t-0.5));
   float b2 = smoothstep(1.0-cs, 1.0, 2.0*abs(uv.s-0.5));

   color.a = max(b1, b2) * color.a;

   gl_FragColor = color;
}


you know this, don't you?
Image
14 fps, l think 300 iterations, many pixels, of course everything not optimized
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
uniform sampler2D baseTexture;

void main(void)
{
   vec2 uv = gl_TexCoord[0].st;
   vec4 color = texture2D(baseTexture, uv);
   //color.rgb *= gl_Color.rgb;

   color.a = 1.0;

   float dpt = 30;
   float pi = 3.141592653589;
   float a = 2;

   float y = 0.0;
   float x = uv.t;

   for (float k=1; k < dpt; ++k) {
      y += sin(pi * pow(k, a) * x)/pow(k, a);
   }

   float m = 0.0;
   x = uv.s;

   for (float k=1; k < dpt; ++k) {
      m += sin(pi * pow(k, a) * x)/pow(k, a);
   }

   y += m;

   //y = y/3.0;

   y -= floor(y);

   color.r = y;
   color.g = y;
   color.b = y;

   gl_FragColor = color;
}


this doesn't use that iteration but looks like it if just black and white i dont rememberxactly
Image

l tried to add noise without using a randomity function:
Image
you need to watch it in full size, note the coloured bows
it obviously broke bumpmapping
Attachments
screenshot_20160414_154007.png
screenshot_20160414_154007.png (280.08 KiB) Viewed 3836 times
screenshot_20160414_152743.png
screenshot_20160414_152743.png (242.65 KiB) Viewed 3836 times
 

User avatar
ExeterDad
Member
 
Posts: 1121
Joined: Sun Jun 01, 2014 20:00
In-game: ExeterDad

Re: Post your screenshots!

by ExeterDad » Thu Apr 14, 2016 18:22

That node highlighting shader is very interesting. I would use it over our current choices.
٩(̾●̮̮̃̾•̃̾)۶

Kibbie and I have a beautiful public server now! HOMETOWN
 

Hybrid Dog
Member
 
Posts: 2460
Joined: Thu Nov 01, 2012 12:46

Re: Post your screenshots!

by Hybrid Dog » Fri Apr 15, 2016 13:06

this code should be better optimized:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
    uniform sampler2D baseTexture;

    void main(void)
    {
       vec2 uv = gl_TexCoord[0].st;
       vec4 color = texture2D(baseTexture, uv);
       color.rgb *= gl_Color.rgb;

       float from = 0.9;

       color.a *= max(
              smoothstep(from, 1.0, 2.0 * abs(uv.s  - 0.5)),
              smoothstep(from, 1.0, 2.0 * abs(uv.t  - 0.5))
       );

       gl_FragColor = color;
    }
 

Hybrid Dog
Member
 
Posts: 2460
Joined: Thu Nov 01, 2012 12:46

Re: Post your screenshots!

by Hybrid Dog » Fri Apr 15, 2016 13:53

Image
Image
Attachments
screenshot_20160415_154959.png
screenshot_20160415_154959.png (263.06 KiB) Viewed 3836 times
screenshot_20160415_154946.png
screenshot_20160415_154946.png (370.33 KiB) Viewed 3836 times
 

User avatar
cd2
Member
 
Posts: 552
Joined: Mon Jun 01, 2015 06:30
GitHub: cdqwertz
IRC: freenode - cd2 InchraNet - cd
In-game: cd cd2

Re: Post your screenshots!

by cd2 » Fri Apr 15, 2016 18:15

I am working on a technology mod. This is a steam engine (+boiler) connected to a quarry :

Image
Attachments
screenshot_20160415_200559.png
screenshot_20160415_200559.png (317.07 KiB) Viewed 3836 times
Last edited by cd2 on Sat Apr 23, 2016 08:03, edited 1 time in total.
 

User avatar
MineYoshi
Member
 
Posts: 4267
Joined: Wed Jul 08, 2015 13:20
GitHub: MineYosh
IRC: MineYoshi
In-game: Kirby_Retro

Re: Post your screenshots!

by MineYoshi » Fri Apr 15, 2016 22:56

cd2 wrote:I am working on a technology mod. This is a steam engine (+boiler) connected to a quarry :

Image



Looks to be a great mod!
People talk about freedom of speech, so i'll say that God exists.
Open your eyes!! See The big unicorn conspiracy.!! :D The government has been lying to us about unicorns!!
"I've learned there are three things you don't discuss with people: religion, politics and the Great Pumpkin" - Linus Van Pelt
I'm the Officially 1st ABJist in the world ( ͡° ͜ʖ ͡°)
 

User avatar
azekill_DIABLO
Member
 
Posts: 3458
Joined: Wed Oct 29, 2014 20:05
GitHub: azekillDIABLO
In-game: azekill_DIABLO

Re: Post your screenshots!

by azekill_DIABLO » Sat Apr 16, 2016 12:50

MineYoshi wrote:
cd2 wrote:I am working on a technology mod. This is a steam engine (+boiler) connected to a quarry :

Image



Looks to be a great mod!


nice mod! +
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
Hi, my username is azekill_DIABLO and i'm an exelent bug-maker(yeah...i know...i have a bad reputation)

azekill_DIABLO said: Mineyoshi+ABJ+Baggins= TOPIC HIJACKED.
My Mods and Stuff | Voxellar | VoxBox on GITHUB | M.I.L.A Monster engine
WEIRD MODDING CONTEST !!!
 

User avatar
qwertymine3
Member
 
Posts: 194
Joined: Wed Jun 03, 2015 14:33
GitHub: Qwertymine
In-game: qwertymine3

Re: Post your screenshots!

by qwertymine3 » Sun Apr 17, 2016 15:27

Image
Avatar by :devnko-ennekappao:
 

User avatar
benrob0329
Member
 
Posts: 1192
Joined: Thu Aug 06, 2015 22:39
GitHub: Benrob0329
In-game: benrob03

Re: Post your screenshots!

by benrob0329 » Sun Apr 17, 2016 16:02

"Sir, they're multiplying!"
 

User avatar
azekill_DIABLO
Member
 
Posts: 3458
Joined: Wed Oct 29, 2014 20:05
GitHub: azekillDIABLO
In-game: azekill_DIABLO

Re: Post your screenshots!

by azekill_DIABLO » Mon Apr 18, 2016 11:24

qwertymine3 wrote:Image


looks like agario without the colors :)
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
Hi, my username is azekill_DIABLO and i'm an exelent bug-maker(yeah...i know...i have a bad reputation)

azekill_DIABLO said: Mineyoshi+ABJ+Baggins= TOPIC HIJACKED.
My Mods and Stuff | Voxellar | VoxBox on GITHUB | M.I.L.A Monster engine
WEIRD MODDING CONTEST !!!
 

User avatar
Krock
Member
 
Posts: 3598
Joined: Thu Oct 03, 2013 07:48
GitHub: SmallJoker

Re: Post your screenshots!

by Krock » Mon Apr 18, 2016 11:58

My house on shivajiva's skyblocks server:
Image
Image
Newest Win32 builds - Find a mod - All my mods
ALL YOUR DONATION ARE BELONG TO PARAMAT (Please support him and Minetest)
New DuckDuckGo !bang: !mtmod <keyword here>
 

User avatar
Inocudom
Member
 
Posts: 2889
Joined: Sat Sep 29, 2012 01:14
IRC: Inocudom
In-game: Inocudom

Re: Post your screenshots!

by Inocudom » Mon Apr 18, 2016 22:04

Image
Yes, I built 9 more of these recently.
Attachments
CGC03.png
CGC03.png (506.1 KiB) Viewed 3836 times
 

User avatar
MineYoshi
Member
 
Posts: 4267
Joined: Wed Jul 08, 2015 13:20
GitHub: MineYosh
IRC: MineYoshi
In-game: Kirby_Retro

Re: Post your screenshots!

by MineYoshi » Mon Apr 18, 2016 22:36

Inocudom wrote:Image
Yes, I built 9 more of these recently.


Nice!
People talk about freedom of speech, so i'll say that God exists.
Open your eyes!! See The big unicorn conspiracy.!! :D The government has been lying to us about unicorns!!
"I've learned there are three things you don't discuss with people: religion, politics and the Great Pumpkin" - Linus Van Pelt
I'm the Officially 1st ABJist in the world ( ͡° ͜ʖ ͡°)
 

Hybrid Dog
Member
 
Posts: 2460
Joined: Thu Nov 01, 2012 12:46

by Hybrid Dog » Fri Apr 22, 2016 18:43

Image
Attachments
screenshot_20160423_172923.png
screenshot_20160423_172923.png (18.81 KiB) Viewed 3836 times
Last edited by Hybrid Dog on Sat Apr 23, 2016 15:31, edited 2 times in total.
 

User avatar
Don
Member
 
Posts: 1641
Joined: Sat May 17, 2014 18:40
GitHub: DonBatman
IRC: Batman
In-game: Batman

Re: Post your screenshots!

by Don » Fri Apr 22, 2016 21:07

Was you bored Hybrid Dog?
Many of my mods are now a part of Minetest-mods. A place where you know they are maintained!

A list of my mods can be found here
 

User avatar
qwertymine3
Member
 
Posts: 194
Joined: Wed Jun 03, 2015 14:33
GitHub: Qwertymine
In-game: qwertymine3

Re: Post your screenshots!

by qwertymine3 » Sat Apr 23, 2016 23:47

Image
Avatar by :devnko-ennekappao:
 

User avatar
Don
Member
 
Posts: 1641
Joined: Sat May 17, 2014 18:40
GitHub: DonBatman
IRC: Batman
In-game: Batman

Re: Post your screenshots!

by Don » Sun Apr 24, 2016 01:07

What is that qwertymine3?
Many of my mods are now a part of Minetest-mods. A place where you know they are maintained!

A list of my mods can be found here
 

User avatar
qwertymine3
Member
 
Posts: 194
Joined: Wed Jun 03, 2015 14:33
GitHub: Qwertymine
In-game: qwertymine3

Re: Post your screenshots!

by qwertymine3 » Sun Apr 24, 2016 09:11

Don wrote:What is that qwertymine3?


3d Worley noise, where the sum of the distances between the 3 nearest points is < 6
Avatar by :devnko-ennekappao:
 

User avatar
azekill_DIABLO
Member
 
Posts: 3458
Joined: Wed Oct 29, 2014 20:05
GitHub: azekillDIABLO
In-game: azekill_DIABLO

Re: Post your screenshots!

by azekill_DIABLO » Sun Apr 24, 2016 10:49

nice :)
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
Hi, my username is azekill_DIABLO and i'm an exelent bug-maker(yeah...i know...i have a bad reputation)

azekill_DIABLO said: Mineyoshi+ABJ+Baggins= TOPIC HIJACKED.
My Mods and Stuff | Voxellar | VoxBox on GITHUB | M.I.L.A Monster engine
WEIRD MODDING CONTEST !!!
 

PreviousNext

Return to Minetest General

Who is online

Users browsing this forum: Bing [Bot] and 10 guests

cron