mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
Several months worth of updates. --------- Co-authored-by: A miscellaneous Fern <80640114+FernandoJ8@users.noreply.github.com> Co-authored-by: Pepsilawn <reisenrui@gmail.com> Co-authored-by: Ray <64306407+OneAsianTortoise@users.noreply.github.com> Co-authored-by: Cure221 <106662180+Cure221@users.noreply.github.com>
15 lines
860 B
Plaintext
15 lines
860 B
Plaintext
/// Returns the fingerprints on this atom
|
|
#define GET_ATOM_FINGERPRINTS(atom) atom.forensics?.fingerprints
|
|
/// Returns the hidden prints on this atom
|
|
#define GET_ATOM_HIDDENPRINTS(atom) atom.forensics?.hiddenprints
|
|
/// Returns the blood dna on this atom
|
|
#define GET_ATOM_BLOOD_DNA(atom) atom.forensics?.blood_DNA
|
|
/// Returns visible blood dna on this atom
|
|
#define GET_ATOM_BLOOD_DECALS(atom) atom.forensics?.get_visible_blood()
|
|
/// Returns the fibers on this atom
|
|
#define GET_ATOM_FIBRES(atom) atom.forensics?.fibers
|
|
/// Returns the number of unique blood dna sources on this atom
|
|
#define GET_ATOM_BLOOD_DNA_LENGTH(atom) (isnull(atom.forensics) ? 0 : length(atom.forensics.blood_DNA))
|
|
/// Returns the number of *visible* blood dna on this atom
|
|
#define GET_ATOM_BLOOD_DECAL_LENGTH(atom) (isnull(atom.forensics) ? 0 : length(atom.forensics.get_visible_blood()))
|