![]() |
ZS Extension. - Printable Version +- Small Basic Forum (https://litdev.uk/mybb) +-- Forum: Small Basic (https://litdev.uk/mybb/forumdisplay.php?fid=1) +--- Forum: Extensions (https://litdev.uk/mybb/forumdisplay.php?fid=3) +--- Thread: ZS Extension. (/showthread.php?tid=100) |
RE: ZS Extension. - z-s - 06-03-2025 Finally got a new PC and will start playing with CSharp again RE: ZS Extension. - sm4llprogrammer2008 - 06-07-2025 Will you continue the Z-S extension sometime? I wished it got new features like sVB support (LD extension only works for sVB right now) RE: ZS Extension. - litdev - 06-07-2025 LD extension works with desktop SB version 1.2 (the lastest even it is many years old) RE: ZS Extension. - z-s - 06-08-2025 Yes I will try to port it to svb but will take time as currently I will have to rebuild last version available on github and some improvement then once I port it to svb I will post here RE: ZS Extension. - litdev - 06-08-2025 ZS, I misunderstood, sm4llprogrammer2008 wants ZS extnsion for sVB - when you get it working for SB, I can show what I did to be able to compile for sVB. RE: ZS Extension. - z-s - 06-15-2025 new stable release with new object. https://github.com/zs-3/ZS/releases/tag/1.2.1.22 RE: ZS Extension. - litdev - 06-16-2025 Updated Extension Manager for this. The extension version is 1.2.1.21, but the download says it is 1.2.1.22. EM uses the version set in the dll so I went with 1.2.1.21. Also do you still need the 2 raylib dlls. To make it compatible with sVB every reference to namespace SmallBasic needs to be changed to SmallVisualBasic. The way I do this is with a #define SVB at the top of every code file which I globally uncomment for an sVB build. Also need to reference SmallVisualBasicLibrary.dll. Note that the SVB needs to be used as a compiler directive for every occurance of SmallBasic namespace, eg. [SmallVisualBasicType] and usings and places where the sVB code in SmallVisualBasicLibrary differes from SmallBasicLibrary. The developer of sVB copied the original code, but has modified it and added arguments in some places so if you use reflection into sVB be careful. Here is an example file: https://github.com/litdev1/LitDev/blob/master/LitDev/LitDev/3DView.cs RE: ZS Extension. - z-s - 06-16-2025 Thanks Updated the release on github. No need of raylib deleted it. Will take some time to make svb build. RE: ZS Extension. - z-s - 06-19-2025 Can anyone recommend what more I can add before porting anything you missing in sb RE: ZS Extension. - AbsoluteBeginner - 06-19-2025 (06-19-2025, 01:50 PM)z-s Wrote: Can anyone recommend what more I can add before porting anything you missing in sb Hello, friend! ![]() Is it possible to add high-speed methods of operation of our proprietary SB neurons to your extension? ![]() |