-
Content Count
1183 -
Joined
-
Days Won
24
VanishedOne last won the day on March 28 2020
VanishedOne had the most liked content!
Community Reputation
543 LegendaryAbout VanishedOne
-
Rank
Advanced Member
Profile Information
-
Gender
Male
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Yes, my impression is that Thief's flashbombs were intended partly as escape tools (indicated e.g. by the 'ace up my sleeve'), which doesn't go well with the time needed to draw the bow. The flash arrow idea probably does go better with a player-versus-undead scenario, like the holy swords that occasionally turn up in Thief FMs.
-
Yes, I was about to post something similar. Not everywhere suits glowing crystals or bioluminescent fungi, which are the other usual nonextinguishable options. Still, like the choice of whether to include rope arrows or vine arrows or lots of stackable crates, it's something a mapper could work with if s/he so chose. Possibly more interesting if it had other uses like disabling bots or cameras. Shouldn't be hard to set up with S/R: give the electric lights a response that changes the light shader (I should think a slight flicker would be best for conveying that the light is broken, not of
-
It sounds like https://bugs.thedarkmod.com/view.php?id=5256 apart from the problems reproducing it.
-
The most id-like way is probably via the FX system. You can access it via func_fx. However, the decal splat range will be limited to < 8 units and the decal will only splat directly downwards. (The usual story: id set it up for the demon-spawning effects in D3 and didn't make it a conveniently general system because they didn't need to.) The other way would involve some sort of synchronised particle emitter and func_splat. However, I have a vague recollection that in my tests func_splat didn't splat all entity classes; splatting $world should work, anything else needs testing. (Also it
-
Comparing my script to the one above, the only thing that stands out is that my equivalents to OnOff() seem to have parameters, e.g. void TriggerNextInSequence(entity me, float threadnum); If anyone likes this telescope (CC-BY-NC), I've already done the format conversion for TDM.
-
Thanks. I hadn't encountered the dmap problem, and unfortunately I think Tels created SEED and he isn't around any more. Maybe it's similar to the problem in SteveL's inlining experiment: Combining models became available in DR fairly late in ITB's development, otherwise I expect I'd have used it instead of SEED for the nails on drainpipes. I did use DR to combine the stacks of scrolls in the office, which had previously used SEED to combine them at runtime (causing a moment of poor framerate after map load, as I recall). I think I'd already reduced their numbers to fit in the entity l
-
How do people go about deciding when to combine models in DR, especially when doing it to lower the entity count in larger maps? I'm particularly curious about: How late into the mapping process you start combining. What happens if you change your mind (do you make a backup copy of the arrangement when you combine models?). Whether you take different approaches when using modular building compared to brush-and-patch style. (My sense is that modular style tends to eat into the entity quota faster, since even a wall without windows, doors, etc. will be composed of models unle
-
It's described in the later part of https://www.iddevnet.com/doom3/bumpmaps.html
-
Here are some previous posts on support for smoothing/vertex normals: It's an avoidable problem if you can use ASE instead, but it's a bit of a gotcha, especially if you're trying to convert files obtained from OpenGameArt or Sketchfab or wherever.
-
Wishlist For Darkradiant
VanishedOne replied to sparhawk's topic in DarkRadiant Feedback and Development
Scaling particles accurately (for precision work like matching water particles to a fountain model, not just relative to other particles) is something I still use the in-game editParticles editor for. -
You haven't met MirceaKitsune yet, then? If you produce something one or more mappers like, they may use it, to greater or lesser extents. Any more comprehensive aims than that will lead to disappointment, I think. But to give a flavour of my own attitude towards referencing other TDM or Thief FMs, a snippet from a readable in my w.i.p. map:
- 16 replies
-
- 1
-
-
- tdm universe
- tdm lore
- (and 8 more)
-
Custom weapon modelling isn't often seen in TDM, so you may be out of luck unless whoever originally made TDM's weapon models is around. The most recent custom weapon model work I know of is by @MirceaKitsune here, so maybe he knows something useful. And I can't find it now, but someone - this says it was @Obsttorte - demo'd a player pistol once. If you're not aware of it already, here's another possible place to ask: http://idtechforums.fuzzylogicinc.com/
-
texture edge-wrapping
VanishedOne replied to Brendon Chung's topic in DarkRadiant Feedback and Development
It's not really a substitute by any means, but this may be relevant: https://forums.thedarkmod.com/index.php?/topic/16730-tutorial-technique-to-texture-rotated-brushes/ -
Compilation error on Linux Mint
VanishedOne replied to VanishedOne's topic in DarkRadiant Feedback and Development
Okay, installing python-is-python3/python-dev-is-python3 let me finish compilation. Although I don't have a script tab or script dropdown, despite not having deliberately disabled script support. Edit: possibly related lines from darkradiant.log: (140103598541440) ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/script.so' (140103598541440) WARNING: Failed to load module /usr/local/lib/darkradiant/modules/script.so: (140103598541440) /usr/local/lib/darkradiant/modules/script.so: undefined symbol: _Py_ZeroStruct -
Compilation error on Linux Mint
VanishedOne replied to VanishedOne's topic in DarkRadiant Feedback and Development
Could this line in config.log be related? PYTHON_LIBS='Usage: /usr/bin/python-config --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--help|--configdir' Digging around a bit I found this: # Python 3.8 requires the --embed switch to produce working linker flags PC_PYTHON_VERIFY_VERSION([>=], [3.8.0], [PYTHON_LIBS=`$PYTHON_CONFIG --libs --embed`], [PYTHON_LIBS=`$PYTHON_CONFIG --libs`]) I have Python 3.8.2 on my system but --embed doesn't appear in the options list for python-config. Edit: Further investigation s