Obsttorte Posted August 16, 2022 Author Report Posted August 16, 2022 9 hours ago, Springheel said: The rules are also explained in the tutorial mission. It's also one of the loading screen tips of both starting missions. Then I probably forgotten about it over the years. It was an assumption as you refered to a wiki article in another thread, obviously a wrong one Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Obsttorte Posted August 16, 2022 Author Report Posted August 16, 2022 I moved over to working on the source code to get the stuff implemented to avoid unnecessary restrictions and as it appears there is already an implementation for a ray-tracing based melee system, probably a leftover from Doom 3. I was able to get it to run and now only need to get the raising animation done. After that it can be tested and fine-tuned. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Dragofer Posted August 16, 2022 Report Posted August 16, 2022 41 minutes ago, Obsttorte said: After that it can be tested and fine-tuned. Nice - for this you could find the zipsync system useful: It allows you to release your own custom builds, including .pk4 and .exe changes, that others can download via the tdm_installer as if it were a dev build. Quote FM: One Step Too Far | FM: Down by the Riverside | FM: Perilous Refuge Co-FM: The Painter's Wife | Co-FM: Written in Stone | Co-FM: Seeking Lady Leicester Dragofer's Stuff | Dragofer's Scripting | A to Z Scripting Guide | Dark Ambient Music & Sound Repository
Obsttorte Posted August 16, 2022 Author Report Posted August 16, 2022 Okay, I think I got it to work. The old implementation is still in place, but switching between both is not straight-forward, if that should be desired. If so, I would need to know that as it includes additional work. By default the code that handles the collision-based knockouts is called via the blackjack animation: anim hit models/md5/weapons/blackjack_view/swing_16frames.md5anim { frame 6 sound snd_swing frame 9 melee_attack_start meleeweap_r overhead frame 17 melee_attack_stop meleeweap_r } Between frame 9 and 17 the code checked, on whether the blackjack model collided with something which would eventually turn out to be a head This changes to anim hit models/md5/weapons/blackjack_view/swing_16frames.md5anim { frame 6 sound snd_swing frame 9 melee_knockout } This causes a trace into the direction the player is looking at frame 9. The distance of the trace is specified in the already existing but unused spawnarg melee_distance on the blackjack entity itself. It's probably a leftover of the Doom3 melee system. If an ai is hit via the trace, and if the distance between the collision point and the enemies head (eye position to be more precisely) is half the melee distance, a knockout check is performed. The knockout rules are as always the melee distance is set to 56, but can be changed in the respective def using half the melee distance for the second step is only a temporary solution, I will introduce a spawarg for that I've also added the indication animation. I'll check out how the zipsync stuff works and provide the files then. Cheers. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Obsttorte Posted August 16, 2022 Author Report Posted August 16, 2022 3 hours ago, Dragofer said: Nice - for this you could find the zipsync system useful: It allows you to release your own custom builds, including .pk4 and .exe changes, that others can download via the tdm_installer as if it were a dev build. Where can I get zipsync? I've only found the source code in the internet, and the links to taaki's server are access restricted. EDIT: Nevermind, found it on the wiki. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Daft Mugi Posted August 16, 2022 Report Posted August 16, 2022 (edited) If the can-blackjack animation is automatic (not initiated by the player), please put that animation behind a cvar. If it is like TDS, definitely please put that animation behind a cvar. For example, a blackjack helper toggleable option. Also, considering blackjacking from the front as an exploit is surprising. There can be more risk with that approach, since a guard might see the player and become alerted, making them unable to be knocked out. Blackjacking from the front can be carefully planned as well, so I don't know why that line of thinking is just for blackjacking from behind. Edited August 16, 2022 by Daft Mugi Quote
Obsttorte Posted August 16, 2022 Author Report Posted August 16, 2022 12 minutes ago, Daft Mugi said: If the can-blackjack animation is automatic (not initiated by the player), please put that animation behind a cvar. If it is like TDS, definitely please put that animation behind a cvar. For example, a blackjack helper toggleable option. That's the plan. I've just forgotten to mention that. 13 minutes ago, Daft Mugi said: Also, considering blackjacking from the front as an exploit is surprising. I guess this depends on the playstyle. I can only judge that from my own experiences knocking out approaching guards feels relatively strong (not so much in TDM as in Thief, but still). But there are also different observations when it comes down to the blackjacking system in general. It's a bit subjective. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Daft Mugi Posted August 16, 2022 Report Posted August 16, 2022 10 minutes ago, Obsttorte said: That's the plan. I've just forgotten to mention that. Awesome! Thank you! 11 minutes ago, Obsttorte said: But there are also different observations when it comes down to the blackjacking system in general. It's a bit subjective. I agree. Quote
Obsttorte Posted August 16, 2022 Author Report Posted August 16, 2022 @DragoferI've setup the packages, created the manifest and uploaded the files to a mirror. When I try to download it using the tdm_installer I am asked to select the version the patch is based on after entering the url. However, even though I selected the correct version I cannot proceed. In addition the new executable doesn't seem to be working with TDM 2.10 due to changes made to the gui files. I guess I'll use svn then. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Obsttorte Posted August 16, 2022 Author Report Posted August 16, 2022 I've commited the current state to the svn. As stated the old system is still in place, so it shouldn't break anything. 1 1 Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
nbohr1more Posted August 16, 2022 Report Posted August 16, 2022 Did you forget to commit the animation to SVN ? --------- Game Map Shutdown ---------- ModelGenerator memory: 12 LOD entries with 0 users using 192 bytes. --------- Game Map Shutdown done ----- ERROR:Neither joint 'r_wrist' nor bindToJoint '' found for attaching 'CMeleeWeapon' on 'player1_weapon' -------------------------------------- Edit: yep Quote Please visit TDM's IndieDB site and help promote the mod: http://www.indiedb.com/mods/the-dark-mod (Yeah, shameless promotion... but traffic is traffic folks...)
Obsttorte Posted August 17, 2022 Author Report Posted August 17, 2022 @nbohr1moreOops. Merged. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Obsttorte Posted August 17, 2022 Author Report Posted August 17, 2022 Commit #10079 (source code) and #16607 (assets): cvar tdm_blackjack_indicate added (boolean, defaults to 1) to allow enabling/disabling the knockout preview indication new spawnarg added to the blackjack, knockout_range melee_distance controls the distance within you can hit the enemy, knockout_range is the maximum distance between the point were the trace hits the enemy and the enemies eyes below which a hit is taken into consideration for a probably successful knockout. I've played a bit and have no strong opinions regarding the values, but you are free to play with them and tell me if you think higher or lower values would work better. Returning to the old system is possible by changing the blackjack_viewmodel def as described in an earlier post. Switching between both systems within TDM or using the preview relyable with the old system is not possible atm. But I am not sure whether any of this is necessary. 2 Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Obsttorte Posted August 17, 2022 Author Report Posted August 17, 2022 19 hours ago, Obsttorte said: @DragoferI've setup the packages, created the manifest and uploaded the files to a mirror. When I try to download it using the tdm_installer I am asked to select the version the patch is based on after entering the url. However, even though I selected the correct version I cannot proceed. It's a https server, hence it wasn't working. I don't have access to an http server it appears. Heck, I don't even know what difference the s at the end makes 3 Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Dragofer Posted August 17, 2022 Report Posted August 17, 2022 36 minutes ago, Obsttorte said: It's a https server, hence it wasn't working. I don't have access to an http server it appears. Heck, I don't even know what difference the s at the end makes You could use Filezilla to host on the DarkMod server, that's what I did. You know you're in the right place when you found the camera wiki pk4s by grayman. s stands for secure, I believe o.o Quote FM: One Step Too Far | FM: Down by the Riverside | FM: Perilous Refuge Co-FM: The Painter's Wife | Co-FM: Written in Stone | Co-FM: Seeking Lady Leicester Dragofer's Stuff | Dragofer's Scripting | A to Z Scripting Guide | Dark Ambient Music & Sound Repository
Obsttorte Posted August 17, 2022 Author Report Posted August 17, 2022 50 minutes ago, Dragofer said: You could use Filezilla to host on the DarkMod server, that's what I did. You know you're in the right place when you found the camera wiki pk4s by grayman. s stands for secure, I believe o.o It would probably be good to add this information in the wiki zipsync tutorial. Scratch that: I can't access the server. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
New Horizon Posted August 18, 2022 Report Posted August 18, 2022 How can I test these changes? Can this be updated using the tdm installer? I don't have svn installed anymore. The latest 2.11 build available in the installer is dev16599-10071. Quote
nbohr1more Posted August 18, 2022 Report Posted August 18, 2022 15 minutes ago, New Horizon said: How can I test these changes? Can this be updated using the tdm installer? I don't have svn installed anymore. The latest 2.11 build available in the installer is dev16599-10071. Up further in this thread is a pk4 that you can put in your 2.10 darkmod folder. The next Dev Build release should include this. Otherwise, if you don't have SVN credentials anymore you can use an SVN client to download the public source: https://svn.thedarkmod.com/publicsvn/darkmod_src/trunk/ and compile it in MSVC community edition then use the assets from the pk4 in this thread. Quote Please visit TDM's IndieDB site and help promote the mod: http://www.indiedb.com/mods/the-dark-mod (Yeah, shameless promotion... but traffic is traffic folks...)
Obsttorte Posted August 18, 2022 Author Report Posted August 18, 2022 1 hour ago, New Horizon said: How can I test these changes? Can this be updated using the tdm installer? I don't have svn installed anymore. The latest 2.11 build available in the installer is dev16599-10071. 46 minutes ago, nbohr1more said: Up further in this thread is a pk4 that you can put in your 2.10 darkmod folder. The next Dev Build release should include this. That won't work. There are code changes included that are required for this to run. I've created an update that could be installed via the tdm installer if someone can point me to an ftp server were I could upload it to. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
New Horizon Posted August 18, 2022 Report Posted August 18, 2022 I'll wait until it's available in the next dev build. Quote
Dragofer Posted August 18, 2022 Report Posted August 18, 2022 1 hour ago, Obsttorte said: That won't work. There are code changes included that are required for this to run. I've created an update that could be installed via the tdm installer if someone can point me to an ftp server were I could upload it to. Have you tried this? https://forums.thedarkmod.com/index.php?/topic/14126-ftpthedarkmodcom/&do=findComment&comment=333594 1 Quote FM: One Step Too Far | FM: Down by the Riverside | FM: Perilous Refuge Co-FM: The Painter's Wife | Co-FM: Written in Stone | Co-FM: Seeking Lady Leicester Dragofer's Stuff | Dragofer's Scripting | A to Z Scripting Guide | Dark Ambient Music & Sound Repository
Obsttorte Posted August 18, 2022 Author Report Posted August 18, 2022 1 hour ago, Dragofer said: Have you tried this? https://forums.thedarkmod.com/index.php?/topic/14126-ftpthedarkmodcom/&do=findComment&comment=333594 I can connect and upload the files, but the download link doesn't work, even if I exchange sftp with http. EDIT: I've also tried altering it as it looks pretty odd sftp://darkmodftp@ftp.thedarkmod.com/upload/custom_builds/manifest.iniz EDIT2: Now I got it. http://ftp.thedarkmod.com/custom_builds/manifest.iniz It's based on the latest dev build. dev16599-10071 EDIT3: If I try it the renderer is broken. Spoiler Linking GLSL program interaction_ambient ... WARNING:Linking program interaction_ambient failed: Vertex info ----------- 1(42) : error C5041: cannot locate suitable resource to bind variable "params". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: ca Linking GLSL program interaction_stencil ... WARNING:Linking program interaction_stencil failed: Vertex info ----------- 5(42) : error C5041: cannot locate suitable resource to bind variable "params". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. Linking GLSL program interaction_shadowmap ... WARNING:Linking program interaction_shadowmap failed: Vertex info ----------- 5(42) : error C5041: cannot locate suitable resource to bind variable "params". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large arra Doesn't happen in the svn build. Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
nbohr1more Posted August 18, 2022 Report Posted August 18, 2022 1 hour ago, Obsttorte said: I can connect and upload the files, but the download link doesn't work, even if I exchange sftp with http. EDIT: I've also tried altering it as it looks pretty odd sftp://darkmodftp@ftp.thedarkmod.com/upload/custom_builds/manifest.iniz EDIT2: Now I got it. http://ftp.thedarkmod.com/custom_builds/manifest.iniz It's based on the latest dev build. dev16599-10071 EDIT3: If I try it the renderer is broken. Reveal hidden contents Linking GLSL program interaction_ambient ... WARNING:Linking program interaction_ambient failed: Vertex info ----------- 1(42) : error C5041: cannot locate suitable resource to bind variable "params". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 1(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 1(42) : error C5041: ca Linking GLSL program interaction_stencil ... WARNING:Linking program interaction_stencil failed: Vertex info ----------- 5(42) : error C5041: cannot locate suitable resource to bind variable "params". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. Linking GLSL program interaction_shadowmap ... WARNING:Linking program interaction_shadowmap failed: Vertex info ----------- 5(42) : error C5041: cannot locate suitable resource to bind variable "params". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "modelViewMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "bumpMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "diffuseMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "specularMatrix". Possibly large array. 5(42) : error C5041: cannot locate suitable resource to bind variable "lightProjectionFalloff". Possibly large arra Doesn't happen in the svn build. You'll need to include the SVN glprogs in your branch. The entire shader system was refactored after the last Dev Build release. ( Or wait until the next Dev Build ) Or compile your changes against 10071 rather than the latest SVN version and include that divergent version in your branch. 1 1 Quote Please visit TDM's IndieDB site and help promote the mod: http://www.indiedb.com/mods/the-dark-mod (Yeah, shameless promotion... but traffic is traffic folks...)
New Horizon Posted August 18, 2022 Report Posted August 18, 2022 When is the next dev build coming? I'm really in no hurry myself. Quote
Obsttorte Posted August 18, 2022 Author Report Posted August 18, 2022 2 hours ago, nbohr1more said: You'll need to include the SVN glprogs in your branch. The entire shader system was refactored after the last Dev Build release. ( Or wait until the next Dev Build ) The ones in the source trunk, not the other one Man, what a hunt. Got it to work now so have fun testing it. @New Horizon Quote FM's: Builder Roads, Old Habits, Old Habits Rebuild Mapping and Scripting: Apples and Peaches Sculptris Models and Tutorials: Obsttortes Models My wiki articles: Obstipedia Texture Blending in DR: DR ASE Blend Exporter
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.