Skip to content
#

modding

Here are 1,116 public repositories matching this topic...

asherkin
asherkin commented Jun 14, 2021

https://forums.alliedmods.net/showthread.php?p=2749741#post2749741

This check bails before it gets to the variant handling check:

if (td->fieldType != FIELD_FLOAT
	&& td->fieldType != FIELD_TIME)
{
	return pContext->ThrowNativeError("Data field %s is not a float (%d != [%d,%d])", 
		prop,
		td->fieldType,
		FIELD_FLOAT,
		FIELD_TIME);
}

https://cs.alliedmods.net/sourcem

heinezen
heinezen commented Mar 29, 2021

nyan should provide a file api that we can inherit from.

Then we can natively interface to the openage file abstraction and do not need to read the whole file in the engine. Basically a class nyan::Filesystem that is specialized by openage. Ideally, the returned file lazily accesses all data through openage::util::File.

Improve this page

Add a description, image, and links to the modding topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the modding topic, visit your repo's landing page and select "manage topics."

Learn more