List of commits:
Subject Hash Author Date (UTC)
Disable texture wrapping in VN 75ed1c845f4643fa4e012f22f5a2bbeacca9d51e mse 2022-03-18 21:39:00
Menu improvements 2ee4efdb3fedb69cbf56711841fc961bd1b4877c mse 2022-03-17 19:32:45
Menu navigation fixes 362878a56a72a43f671d4c6022e53ce124a0cf99 mse 2022-03-17 18:47:50
Rewrite VN engine 4c88d574d4f72794ab17fb5ecdc57fbd2a93cb7e mse 2022-03-16 07:19:06
Add commandKey() function 066858b9a80610248bed69ac7095129a9f142a78 mse 2022-03-14 00:05:46
Fix a multiple selection bug on the trading screen 0c64d03fed96234183bf7bb69819f48472c1aafd mse 2022-03-10 07:14:13
Right joystick moves mouse f59369b8be29e9910ef3e5e807495b46a6403c19 mse 2022-03-06 09:50:35
Add CLEARSCREEN command 57f55faa0fec4c558e8c9a7942cb0f47ddca07d7 mse 2022-03-01 09:35:11
Tint rain ambient color & bump version to v0.7.8 56888b00706faddf9aea8a1930ee784b535c50bf mse 2022-01-31 03:02:45
Add controlKey function 6997d5afe5971694fe0222917f8125dd44b23aa3 mse 2022-01-21 17:23:00
Start CSL function library 4f2a3417450dc7389548cb39e245939c17f03fe9 mse 2021-12-28 19:16:57
Fix non-owning reference bug 65e4d1a89c656acbaced0923dd5f64fd8908b025 mse 2021-12-28 18:45:37
Translate 'Get closer' 86563edde1ef9fd574382b772b34ee78636af82b mse 2021-12-18 16:06:58
Bump version to v0.7.7 e1e9703ff5eec4b0003082052f9035a46a82767a mse 2021-12-18 04:23:49
Add item translation system & change trading text de19b57c624f0317b4fe57086eff3e57f16e3361 mse 2021-12-17 22:32:45
Fix fg3 depth buffer format 65eef1b171eb937c6c213f7af1f1206053183832 mse 2021-12-16 00:57:55
Upgrade fg3 depth precision 153ff3855ec6f47b18eef4b262e42e4c4ccee90b mse 2021-12-15 16:20:26
Translate confec_select and confec_name to Greek 285a98c703de8afd92129cd08147562573785a29 mse 2021-12-15 01:51:04
Update game controller DB 1bc318197ae0f77693da7b7b4f754d7c89f800f6 mse 2021-12-14 14:22:51
Bump version to v0.7.6 53d47f1b30d2e87a4b72456220b813848af22ba1 mse 2021-12-14 14:03:20
Commit 75ed1c845f4643fa4e012f22f5a2bbeacca9d51e - Disable texture wrapping in VN
Author: mse
Author date (UTC): 2022-03-18 21:39
Committer name: mse
Committer date (UTC): 2022-03-18 21:39
Parent(s): 2ee4efdb3fedb69cbf56711841fc961bd1b4877c
Signer:
Signing key:
Signing status: N
Tree: f9a998f62dd5fe92b6fac69055adf3d74046c10f
File Lines added Lines deleted
include/vn.h 5 0
File include/vn.h changed (mode: 100644) (index 1b41bfb..7b64db0)
... ... fgl::Texture vnLoadImage( const std::string &fileName, bool mipmap, bool filter
37 37 fclose( file ); fclose( file );
38 38 } }
39 39 fgl::Texture imgTexture = fgl::loadTexture( imgData, imgWidth, imgHeight, imgChannels, mipmap, filter ); fgl::Texture imgTexture = fgl::loadTexture( imgData, imgWidth, imgHeight, imgChannels, mipmap, filter );
40 if( imgTexture.success ){
41 // Disable texture wrapping.
42 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE );
43 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE );
44 }
40 45 stbi_image_free( imgData ); stbi_image_free( imgData );
41 46 return imgTexture; return imgTexture;
42 47 } }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/mse/ConfectionerEngine

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/mse/ConfectionerEngine

Clone this repository using git:
git clone git://git.rocketgit.com/user/mse/ConfectionerEngine

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main