This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 »
706
Proposals / Re: remove the "hidden" login feature
« on: October 21, 2014, 09:40:32 pm »
IsmAvatar, could these poll answers possibly be more loaded propositions?
707
Off-Topic / Windows 8 Virtual Desktops
« on: October 20, 2014, 02:59:38 am »
No joke, it's been built into Windows since XP, and Microsoft has an installer for you to access the hidden feature, so it's not a rough hack.
http://www.tekrevue.com/tip/virtual-desktops-windows/
http://www.tekrevue.com/tip/virtual-desktops-windows/
708
Proposals / Re: New Theme for LGM?
« on: October 20, 2014, 02:22:25 am »
Hello Mongolion, I have just added look and feel support to the new LGM.
http://enigma-dev.org/forums/index.php?topic=2269.0
You seem to be on a really outdated version though. Have you had problems upgrading to the newer releases of LGM?
http://enigma-dev.org/forums/index.php?topic=2269.0
You seem to be on a really outdated version though. Have you had problems upgrading to the newer releases of LGM?
709
Ideas and Design / Re: In need of a Sonic fangame engine for Enigma
« on: October 20, 2014, 02:10:00 am »
You're welcome, and yeah that one does work pretty well.

The first level seemed a little glitchy to me though, it wasn't animating properly and was running on the outside of the circle. But once I restarted it was fine and so was every other level, so I am guessing that was a wild fluke.

The first level seemed a little glitchy to me though, it wasn't animating properly and was running on the outside of the circle. But once I restarted it was fine and so was every other level, so I am guessing that was a wild fluke.
710
Proposals / Re: remove the "hidden" login feature
« on: October 18, 2014, 09:52:30 pm »
What's wrong TKG, what's bothering you?
711
Off-Topic / Re: PM is broken again :D
« on: October 16, 2014, 10:28:32 pm »
When this happens you just need someone to send you a PM, happened to me before and I just had to wait for somebody to PM me. I PM'd you so that should fix it.
712
Issues Help Desk / Re: bug report
« on: October 15, 2014, 09:33:08 pm »
The unconditional save dialog has been fixed in the newest release.
http://enigma-dev.org/forums/index.php?topic=2269.0
http://enigma-dev.org/forums/index.php?topic=2269.0
713
General ENIGMA / Re: Who fixed arrays?
« on: October 15, 2014, 09:30:07 pm »
Hahahah, that's amazing sorlok! You're my hero!
714
General ENIGMA / Re: What happened to "wxEnigma"?
« on: October 15, 2014, 09:27:49 pm »
The project was cancelled because I hate the wxWidgets library, Qt Framework is more complete and supports themes much better. So RadialGM is the only for a future native IDE.
http://enigma-dev.org/docs/Wiki/RadialGM
The MDI area can switch between windows and tabs.
http://enigma-dev.org/docs/Wiki/RadialGM
The MDI area can switch between windows and tabs.
715
Proposals / Re: SWF file support?
« on: October 13, 2014, 10:24:28 pm »
No as Harri said, Flash is not an open standard, HTML5 is here and Flash is dead. We would much rather support the SVG format which is much more widely supported.
716
Off-Topic / Re: DX12 Is it all hype or is this the holy grail of DX!
« on: October 13, 2014, 10:20:59 pm »
I don't know if I did or not, I am just being objective. Look at the code to load a texture in Direct3D11 and then realize why ENIGMA does not have a Direct3D11 backend.
http://msdn.microsoft.com/en-us/library/windows/desktop/ff476904%28v=vs.85%29.aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/ff476904%28v=vs.85%29.aspx
717
Off-Topic / Re: DX12 Is it all hype or is this the holy grail of DX!
« on: October 13, 2014, 10:13:57 pm »
You're all partially correct in my opinion as someone who has written code for all of the graphics API's and their various versions.
Direct3D9 is honestly the best of the Direct3D versions, and is far superior to the GL1 and GL2 specs. Direct3D has software vertex processing and the ability to emulate shader model on cards that do not support new features, which has always been a huge positive for developers, in OpenGL it's really not feasible to do without duplicating tons of code. GL3 starts going in a new direction and provides more options, you can have both sampler objects and per-texture sampling information, the choice is yours. Direct3D10 also started going in the lower level direction, but in the wrong way, DX10/11 require a substantial amount of code to get a basic rendering context. This is obviously expected, but the code for Direct3D10/11 is so much more verbose than it is with OpenGL3/4.
Direct3D9 is honestly the best of the Direct3D versions, and is far superior to the GL1 and GL2 specs. Direct3D has software vertex processing and the ability to emulate shader model on cards that do not support new features, which has always been a huge positive for developers, in OpenGL it's really not feasible to do without duplicating tons of code. GL3 starts going in a new direction and provides more options, you can have both sampler objects and per-texture sampling information, the choice is yours. Direct3D10 also started going in the lower level direction, but in the wrong way, DX10/11 require a substantial amount of code to get a basic rendering context. This is obviously expected, but the code for Direct3D10/11 is so much more verbose than it is with OpenGL3/4.
Quote from: DaSpirit
OpenGL "Next Generation" is in the works as well. They're planning on deprecating all old OpenGL versions and starting anew in favor of an API more like Mantle.They aleady finished, it's called GLES.
I think it's overhyped.
Quote from: Darkstar2
As to DX12/OGL, I'm not 100% familiar with all the technical aspects, but can you do everything DX12 can, in OGL or are there feature specific things only supported in DX ?DirectX12 will really not offer anything that the other API's do not. Direct3D9 used to have image loading and could read various formats for you without extensions, but it's going lower level now so it doesn't have anything super special to it anymore. There are really only a few things that Direct3D10/11 have that will soon be superseded by the other API's, software emulation (which will be obsolete and no longer needed) and the illusion of threading (which Mantle has already addressed)
718
Tips, Tutorials, Examples / Re: One Script Pong
« on: October 13, 2014, 10:07:12 pm »
Basically the script wants to initialize local vars the first time it runs, this obviously doesn't work in ENIGMA yet. Second, he tests whether the initialization was already run by use of a variable_local_get call, which obviously neither ENIGMA or Studio support.
719
Off-Topic / Re: We will be discontinuing YYC Compiler!
« on: October 12, 2014, 02:27:52 am »
If I remember correctly I could have swore someone helped Overmars, like one of his colleagues or something along those lines, with the Direct3D support and a few other features of the original GM.
The Game Maker's apprentice too has other authors.
http://www.pompanobeachhigh.com/documents/holley/game_makers_apprentice.pdf
The Game Maker's apprentice too has other authors.
http://www.pompanobeachhigh.com/documents/holley/game_makers_apprentice.pdf
720
Developing ENIGMA / Re: LateralGM 1.8.6.724
« on: October 11, 2014, 08:46:44 am »
No, that's Josh, I am totally more like:

You know I fixed a Win32 bug this way, no joke.

You know I fixed a Win32 bug this way, no joke.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 »