A video from the japhyriddle youtube channel.
2D, 3D, game, games, online game, game development, game engine, programming, OpenGL, Open AI, math, graphics, design, graphic, graphics, game development, game engine, programming, web development, web art, web graphic, arts, tutorial, tutorials,
Se afișează postările cu eticheta 2D. Afișați toate postările
Se afișează postările cu eticheta 2D. Afișați toate postările
marți, 19 noiembrie 2024
miercuri, 13 noiembrie 2024
duminică, 10 noiembrie 2024
Shadertoy : Warp of the West
... see this shader at the official website.
Posted by
Cătălin George Feștilă
Labels:
2024,
2D,
development,
shader,
shaders,
shadertoy,
web development
Blender 3D : how to model this Snowflake Decor in blender _ blender modeling
... another video tutorial with a snowflake by CG VOICE !!!
Posted by
Cătălin George Feștilă
Labels:
2024,
2D,
3D,
Blender 3D,
design,
graphic,
graphics,
tutorial,
tutorials,
video tutorial,
youtube
Godot : How to implement wall sliding in Godot 4.3 ...
... another video tutorial with 2D game development from the GameDevJourney - youtube channel.
Posted by
Cătălin George Feștilă
Labels:
2024,
2D,
design,
development,
game development,
Godot,
graphics,
youtube
News : Have you tried Moho's Liquid Shapes? You can combine parts of a character and easily animate them
As far as I know, this software is mainly 2D software ... however, here are some 3D translations ...
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
2D,
3D,
design,
graphics,
Moho Animation Software
vineri, 25 octombrie 2024
miercuri, 16 octombrie 2024
News : Inkscape 1.4 released .
See this video from the SweaterCatDesigns youtube channel.
The Inkscape official youtube channel don't have a video with this new released version.
sâmbătă, 5 octombrie 2024
News : Fluid dynamics feels natural once you start with quantum mechanics.
... quantum mechanics give a better simulation example from braintruffle youtube channel.
joi, 3 octombrie 2024
Pydroid 3 android application for python ...
The Pydroid3 android application is the best way to test and run python scripts.
I install python packages with the install option, the pip command on terminal comes with errors for same python package.
I used the free version but if you pay for monthly or lifetime then you can have more features.
Same team come with android applications to have add more features, see these IIEC team appplicatons.
luni, 23 septembrie 2024
Online tool : draw SVG with artdraw ...
You can find this online tool on this url.
Posted by
Cătălin George Feștilă
Labels:
2024,
2D,
drawing,
graphic,
graphics,
online tool,
svg,
tutorial,
tutorials,
video tutorial
duminică, 15 septembrie 2024
News : KDE Plasma 6.2, Gnome 47 RC and the KDE Frameworks 6.6.
Linux distros comes with new released graphic user interface, you an find some videos on the LinuxNetwork youtube channel.
marți, 10 septembrie 2024
Kleki online painting tool.
A free and open-source online painting tool, inspired by Paint Tool SAI and Oekaki Shi Painter.
joi, 29 august 2024
News : Walkthrough Series: Interaction Settings.
... I find a good application on android play to create many types of files SVG files. You can use SVG files in Godot game engine.
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
2D,
android,
Concepts App,
Godot,
graphic,
graphics,
news
vineri, 23 august 2024
News : Cyberpunk 2077 goes Hyper-Realistic ... 8K video demo real!
This is an 8K video ... see on NextGenDreams - youtube channel !
They have this hardware:
Everything is recorded on this system:
Chassi: NZXT Elite H5 Black
MB: NZXT Z790 Black
GPU: Nvidia Geforce RTX 4090 (MSI SUPRIM)
CPU: Intel Core i9-13900KS
RAM: Corsair 64GB DDR 5 6000MHz CL30
Cooling System: NZXT Kraken Elite 240 Black
SSD: Samsung 990 PRO M.2 NVMe 2TB
luni, 19 august 2024
News : New Goodnotes 6 Features you NEED to try!
On Sept 1, 2024, we're no longer supporting iOS/iPadOS 15 and macOS 12!
Now, this works on : iOS, Android, Windows, Web.
For windows the price is $6.99 per year, with a 1-week free trial.
... video tutorial from Kayla Le Roux - official youtube channel
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
2D,
design,
Goodnotes 6,
graphics,
news,
video,
video tutorial,
youtube
sâmbătă, 17 august 2024
News : Creator online tool for assembly with a good design.
This is an online tool for assembly proramming comes with example and a good interface.
CREATOR is a generic teaching simulator to program in assembly in which you can simulate the operation of different architectures on the same tool. This simulator is designed to be used as a tool in which students can put into practice the brews seen in the theoretical classes of the subjects of Architecture and Computer Structure.
You can find this tool on this webpage with examples included RISC-V and MIPS-32.
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
2D,
assembly,
design,
development,
news,
online,
online tool
joi, 15 august 2024
News : Godot 4.3 new released.
With over 3,500 commits authored by over 500 contributors, the latest Godot Engine release comes packed full of new features and
Read more on the official webpage.
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
2D,
3D,
3d engine,
game engine,
Godot,
news
luni, 12 august 2024
FASM : play a wav file with assembly programming language.
... this source code in FASM will play a hexa file using a window with two buttons, see my comments to deal with 'how to do it' ... :
; sound player example , tested with tada.wav from windows os
; convert wav file with
; tomeko.net/online_tools/file_to_hex.php online tool
; to text from tool , then add 'db ' in the front of Sound.inc text file like this:
; db 0x52, 0x49, 0x46, 0x46,
; this : 0x52, 0x49, 0x46, 0x46, is header for RIFF WAV file format
format PE GUI 4.0
entry start
include 'INCLUDE\win32a.inc'
ID_CAPTION = 101
ID_MESSAGE = 102
ID_ICONERROR = 201
ID_ICONINFORMATION = 202
ID_ICONQUESTION = 203
ID_ICONWARNING = 204
ID_TOPMOST = 301
section '.text' code readable executable
start:
invoke GetModuleHandle,0
invoke DialogBoxParam,eax,37,HWND_DESKTOP,DialogProc,0
invoke ExitProcess,0
proc DialogProc hwnddlg,msg,wparam,lparam
push ebx esi edi
cmp [msg],WM_INITDIALOG
je .wminitdialog
cmp [msg],WM_COMMAND
je .wmcommand
cmp [msg],WM_CLOSE
je .wmclose
xor eax,eax
jmp .finish
.wminitdialog:
jmp .processed
.wmcommand:
cmp [wparam],BN_CLICKED shl 16 + IDCANCEL ; stop
je .player_stop
cmp [wparam],BN_CLICKED shl 16 + IDOK
je .player_play
jmp .processed
.player_stop:
invoke play, NULL, NULL, NULL ; stop
jmp .processed
.player_play:
invoke play, sndFile, NULL, 0x0004 or 0x0001 ; 0x0004 = SND_MEMORY + ASYNC = 0x0001
jmp .processed
.wmclose:
invoke EndDialog,[hwnddlg],0
.processed:
mov eax,1
.finish:
pop edi esi ebx
ret
endp
section '.bss' readable writeable
sndFile :
;db 'Sound.wav',0
include 'Sound.inc';
section '.idata' import data readable writeable
library kernel,'KERNEL32.DLL',\
user,'USER32.DLL',\
winmm,'winmm.dll'
import winmm,\
play, 'PlaySound'
import kernel,\
GetModuleHandle,'GetModuleHandleA',\
ExitProcess,'ExitProcess'
import user,\
DialogBoxParam,'DialogBoxParamA',\
EndDialog,'EndDialog'
section '.rsrc' resource data readable
directory RT_DIALOG,dialogs
resource dialogs,\
37,LANG_ENGLISH+SUBLANG_DEFAULT,demonstration
dialog demonstration,'SoundPlayer / _ (typedef)',70,76,110,30,WS_CAPTION+WS_POPUP+WS_SYSMENU+DS_MODALFRAME
dialogitem 'BUTTON','Play',IDOK,10,10,45,15,WS_VISIBLE
dialogitem 'BUTTON','Stop',IDCANCEL,54,10,45,15,WS_VISIBLE
enddialog
Abonați-vă la:
Postări (Atom)