This is the first video done entirely on Linux. Programs and OS used in the video are Ubuntu 19.10, OBS, Minetest 5.1.0, Inkscape, and Shotcut. There are still some area in OBS where the processing warning came on so there are a couple places in the recording where the video quality dropped. The main issue is in Windows and Mac OSX that take advantage of hardware acceleration. On Linux the OBS encoder is FFMPEG VAAPI which is the opensource hardware acceleration. I have not been able to use the AMD GPU pro video drivers because they are only available for the LTS version of Ubuntu. The recording settings for OBS are VAAPI Codec H.264 and the bitrate is 30000 Kbps. I also have an audio issue to workout with sound from the desktop not going to the mixer through USB. So, I will try again on the next episode to make a better recording.
Minetest Gameplay EP282 New Medieval Village
Minetest Gameplay EP281 MineClone2 Village Renovations
Minetest Gameplay EP280 MineClone2 Continued
Minetest Gameplay EP279 MineClone2 Revisit
Minetest Gameplay EP278 Completed Penthouse
Quick Glass Mod – rblok3
I referenced creating a quick glass block mod where the nodes may be cut in the Moreblocks circular saw mod. There may be a better way to write the code below. I am still learning how mods and graphics work in Minetest. The mod is free to do anything you want to it.
There are 5 files in the “rblok3” folder. One just needs to move the rblok3 folder to the mods folder in the game and activate it.
To get the mod go to , http://www.mediafire.com/file/igm4g9gf3arttvt/rblok3.zip/file
Here is the main code in the “init.lua”
minetest.register_node(“rblok3:glassblk”, {
description = “Tinted Glass”,
drawtype = “glasslike_framed_optional”,
tiles = {“rgs_black_glass.png”},
paramtype = “light”,
paramtype2 = “facedir”,
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
sounds = sound_glass,
use_texture_alpha = true,
})
minetest.register_node(“rblok3:glassblk1”, {
description = “Tinted Glass1”,
drawtype = “glasslike_framed_optional”,
tiles = {“rgs_black_glass1.png”},
paramtype = “light”,
paramtype2 = “facedir”,
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
sounds = sound_glass,
use_texture_alpha = true,
})
–stairsplus registration
if minetest.get_modpath(“moreblocks”) then
stairsplus:register_all(“rblok3”, “Tinted_Glass”, “rblok3:glassblk”, {
description = “Tinted_Glass”,
drawtype = “glasslike_framed_optional”,
tiles = {“rgs_black_glass.png”},
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
sounds = sound_glass,
use_texture_alpha = true,
})
stairsplus:register_all(“rblok3”, “Tinted_Glass1”, “rblok3:glassblk1”, {
description = “Tinted_Glass1”,
drawtype = “glasslike_framed_optional”,
tiles = {“rgs_black_glass1.png”},
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
sounds = sound_glass,
use_texture_alpha = true,
})
end
Enjoy 🙂
Minetest Gameplay EP277 New Office Building
Today’s episode covers
A new Office building in the modern world
Mods List – https://wp.me/P8vQfT-6x
Minetest Game http://www.minetest.net/
Official Minetest Android app,
https://play.google.com/store/apps/details?id=net.minetest.minetest&hl=en
Minetest license information and description from the official Minetest site,
“Minetest is a near-infinite-world block sandbox game and a game engine, inspired by InfiniMiner, Minecraft, and the like.
Minetest is available natively for Windows, OS X, GNU/Linux, Android, and FreeBSD. It is Free/Libre and Open Source Software, released under the LGPL 2.1 or later.”
http://www.minetest.net/#about
Sounds and Music
Intro and Outro – Apple Loops
Intro Video – Intromate – IOS App Store
Check out my new website at https://rgsproductions2005.com
Thanks for Watching!