2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

52 Commits

Author SHA1 Message Date
0911c3ab88 Reviewed Tests project
- Removed example browsing test. Focusing on examples being built on their own instead.
- Removed old .projitems/.shproj from bindings and examples.
- Simplified NetCore, NetCoreRT, NetFX tests into one that uses multitarget instead.
2019-10-27 14:06:15 +00:00
1bb0a35c54 Changed MusicData back to IntPtr.
- MusicData struct is not easy to marshall. The struct layout changes based on what file formats
raylib is compiled with.
2019-07-14 12:11:07 +01:00
847ac51790 Initial update to raylib 2.5
- Still a work in progress
2019-07-07 13:12:06 +01:00
b59cbaff6d Removed the native binaries. There are multiple ways to configure raylib and from using the bindings I found I ended up
using a custom build anyway so I could access extra modules.
2019-05-18 15:22:04 +01:00
dd9710fc57 - Improvements for 2.5 release. Alot more work than I expected.
- Examples are out of date and will need to be regenerated before release.
2019-04-22 07:40:01 +01:00
8623bf874e Changed easings to a direct port
- Trying direct ports of modules starting with easings.
- Readme fix and removed old rlgl.
- Improving documentation.
2019-03-17 11:05:24 +00:00
3ea05ab540 Testing updated nuget
- Trying to fix issues with .NET Core and nuget. Moved nuget files into bindings folder.
2019-03-15 11:41:38 +00:00
27a555bc97 Organising bindings
- Seperated bidning extensions into seperate file. This will make it easier when generating them.
- Added minor fixes I found while using bindings.
2019-03-15 11:40:41 +00:00
f4ef94d63f Color defines now only in struct
- Color defines removed. Instead use them from Color struct. E.g Color.WHITE.
2019-02-11 11:25:09 +00:00
19dab0c7a1 Breaking change
- Removed constants. Enums used instead.
- Changed some functions to take enum instead of int to remove explicit cast.
- Updated readme with differences.
2019-02-11 11:23:33 +00:00
2725e1df2a Remove bindings project
- No longer needed. Binding code should be included directly in project for more control.
2019-02-10 16:59:56 +00:00
d4d47694d4 Moving dependencies so there in one place
- Removed lib folder from Test projects.
- Added native folder to Bindings using release build with debug info.
- Updated Test projects to use new location ,
2018-12-29 12:23:17 +00:00
078be949e9 Fixed comment ident 2018-12-03 16:19:17 +00:00
d76e1f3c96 Updated enums + cleanup
- Enums updated to match current raylib version. Also moved around to the order matches.
2018-12-03 16:14:27 +00:00
a0b5be8df5 Fixing physac issues
- Trying to fix marshall issues withh physac. Comparing struct size compared to c etc.
2018-11-30 10:12:55 +00:00
2e6a583193 Fixed VR issue
- Fixed werid graphical bug with VR. Issue was with the struct for VrDeviceInfo.
2018-11-22 15:00:25 +00:00
01e1bd93a9 Update project settings 2018-10-26 18:48:51 +01:00
e6c3d8532f Merge branch 'master' of https://github.com/ChrisDill/Raylib-cs 2018-10-26 18:39:19 +01:00
9732de5c2f Fixed typo
- AudioStream and VrDeviceInfo should be structs not classes.
- Added [SuppressUnmanagedSecurity] to Raylib class. Should improve performance(untested).
2018-10-26 18:38:12 +01:00
Mikael Rasmussen
907da7f614 pre define distorion values 2018-10-26 19:19:28 +02:00
Mikael Rasmussen
386ae3c29e Merge remote-tracking branch 'ChrisDill/master' 2018-10-26 17:47:23 +02:00
Mikael Rasmussen
63a230ae21 Vr example runs, but does not render properly 2018-10-26 13:05:34 +02:00
dbb642b773 Merge branch 'master' of https://github.com/ChrisDill/Raylib-cs 2018-10-25 18:20:15 +01:00
26cd2c6337 Fixing more examples
- Changed a few parts to use IntPtr for now.
2018-10-25 18:20:13 +01:00
Mikael Rasmussen
0d31d18479 Merge remote-tracking branch 'ChrisDill/master' 2018-10-25 19:08:56 +02:00
Mikael Rasmussen
b020a7be91 fix for dropfiles 2018-10-25 18:57:12 +02:00
67d5628fe3 Removed FormatText + SubText change
- Using built in string.Format instead of FormatText.
- SubText changed to extension method for a string that uses Substring and a bound limit.
2018-10-25 17:21:47 +01:00
696a9cf14a Fixed RayHitInfo
- Fixed issue with RayHitInfo. bool types different so using byte instead.
2018-10-25 13:07:38 +01:00
527bf58521 Fixed trailing whitespace
- Removed trailing whitespace from bindings and examples.
2018-10-24 12:41:55 +01:00
3c747fa18d Moved example menu
- Menu for example removed from Test projects and moved to exampes.
- Changed nativeLibName from raylib.dll to raylib. It should find the correct one this way but might need a dll.config file.
2018-10-23 17:13:25 +01:00
0727eda0bf Working on example fixes
- Minor fix in Raylib.cs
- Updated Test.NetFX for better debugging of examples.
2018-10-23 12:38:34 +01:00
167a41f20d Bindings cleanup
- Replaced tabs with 4 spaces
- Added comments to Raylib.cs
2018-10-23 11:57:13 +01:00
4a5299504a Fixing raylib enums/contants
- Enum names should be close to raylib.
- Added constants directly as well with Colours.
2018-10-22 16:07:18 +01:00
msmshazan
6285895ad5 added new runtimes 2018-10-21 23:04:32 +05:30
fc0527a2ef Review and cleanup
- General cleanup.
- Fixed missing functions from raymath.
- Nuget info part of project file.
2018-10-20 13:16:58 +01:00
a9da337c0e Bindings moved to standard
- Bindings changed to a .Net standard library.
- Split up testing code and library into a Test project.
2018-10-18 13:55:03 +01:00
7c541e0c92 Fixing a few functions
- Changing pointer arguments to use ref
2018-10-15 19:20:45 +01:00
msmshazan
f9b3233c69 Some fixes 2018-10-15 16:50:44 +05:30
msmshazan
4267707d51 small change 2018-10-15 16:32:15 +05:30
msmshazan
3c81f15df4 Fix for Pinvoking structs 2018-10-15 16:24:58 +05:30
3f17281969 Back to unsafe
- Fixed array issue means we have to use unsafe in a few parts for now.
- Testing rayforms in bindings
2018-10-12 20:42:51 +01:00
msmshazan
9afa8103ac Added fixes to Handle x86 and x64 bit dll dependencies of raylib 2018-10-05 23:47:19 +05:30
87049c7ae4 Merge pull request #6 from msmshazan/dllimport-fix
Changing Dllimport calling conventions to Cdecl
2018-10-05 18:07:04 +01:00
msmshazan
2afaef2af9 Changing Dllimport calling conventions to Cdecl 2018-10-05 22:31:02 +05:30
2a5b7e5e0e Bindings project can now test directly
- Changed back to exe project so bindings can be tested easily. Otherwise build as a class library.
- raylib.dll moved yet again. It is now in with bindings and copied to output.
2018-10-05 18:00:12 +01:00
e2a32241de Tidying up project
- Added Release folder for important dlls that will be used in nuget package
- Moved Rayforms into Examples folder
- Added updated generator(WIP)
2018-10-05 17:31:46 +01:00
f880241ee4 No longer require unsafe option
- Change unsafe/fixed to use IntPtr or MarshallAs instead.
- Added methods in physac to marshall IntPtr returns to PhysicsBodyData.
2018-09-23 12:34:40 +01:00
8272439d26 Fixed .proj settings and readme 2018-09-10 12:25:13 +01:00
410d50c65f Updated bindings!
- Changed internal class name from rl to Raylib.
- Improving documentation and tidying bindings a bit.
- Renamed DrawControl to RayForm.
- Bindings now a class library for easy reuse.
2018-09-10 12:18:51 +01:00
62561d0bdb Setting up examples project
- Dedicated project for raylib examples using Bindings as a class library.
2018-09-10 11:42:18 +01:00